home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb.new / gdb-3.98 / include / m68k-opcode.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-01  |  87.3 KB  |  1,727 lines

  1. /* Opcode table for m68000/m68020 and m68881.
  2.    Copyright (C) 1989, Free Software Foundation.
  3.  
  4. This file is part of GDB, the GNU Debugger and GAS, the GNU Assembler.
  5.  
  6. Both GDB and GAS are free software; you can redistribute and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GDB and GAS are distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GDB or GAS; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.    
  20.  
  21. struct m68k_opcode
  22. {
  23.   char *name;
  24.   unsigned long opcode;
  25.   unsigned long  match;
  26.   char *args;
  27. };
  28.  
  29. /* We store four bytes of opcode for all opcodes because that
  30.    is the most any of them need.  The actual length of an instruction
  31.    is always at least 2 bytes, and is as much longer as necessary to
  32.    hold the operands it has.
  33.  
  34.    The match component is a mask saying which bits must match
  35.    particular opcode in order for an instruction to be an instance
  36.    of that opcode.
  37.  
  38.    The args component is a string containing two characters
  39.    for each operand of the instruction.  The first specifies
  40.    the kind of operand; the second, the place it is stored.  */
  41.  
  42. /* Kinds of operands:
  43.    D  data register only.  Stored as 3 bits.
  44.    A  address register only.  Stored as 3 bits.
  45.    R  either kind of register.  Stored as 4 bits.
  46.    F  floating point coprocessor register only.   Stored as 3 bits.
  47.    O  an offset (or width): immediate data 0-31 or data register.
  48.       Stored as 6 bits in special format for BF... insns.
  49.    +  autoincrement only.  Stored as 3 bits (number of the address register).
  50.    -  autodecrement only.  Stored as 3 bits (number of the address register).
  51.    Q  quick immediate data.  Stored as 3 bits.
  52.       This matches an immediate operand only when value is in range 1 .. 8.
  53.    M  moveq immediate data.  Stored as 8 bits.
  54.       This matches an immediate operand only when value is in range -128..127
  55.    T  trap vector immediate data.  Stored as 4 bits.
  56.  
  57.    k  K-factor for fmove.p instruction.   Stored as a 7-bit constant or
  58.       a three bit register offset, depending on the field type.
  59.  
  60.    #  immediate data.  Stored in special places (b, w or l)
  61.       which say how many bits to store.
  62.    ^  immediate data for floating point instructions.   Special places
  63.       are offset by 2 bytes from '#'...
  64.    B  pc-relative address, converted to an offset
  65.       that is treated as immediate data.
  66.    d  displacement and register.  Stores the register as 3 bits
  67.       and stores the displacement in the entire second word.
  68.  
  69.    C  the CCR.  No need to store it; this is just for filtering validity.
  70.    S  the SR.  No need to store, just as with CCR.
  71.    U  the USP.  No need to store, just as with CCR.
  72.  
  73.    I  Coprocessor ID.   Not printed if 1.   The Coprocessor ID is always
  74.       extracted from the 'd' field of word one, which means that an extended
  75.       coprocessor opcode can be skipped using the 'i' place, if needed.
  76.  
  77.    s  System Control register for the floating point coprocessor.
  78.    S  List of system control registers for floating point coprocessor.
  79.  
  80.    J  Misc register for movec instruction, stored in 'j' format.
  81.     Possible values:
  82.     000    SFC    Source Function Code reg
  83.     001    DFC    Data Function Code reg
  84.     002    CACR    Cache Control Register
  85.     800    USP    User Stack Pointer
  86.     801    VBR    Vector Base reg
  87.     802    CAAR    Cache Address Register
  88.     803    MSP    Master Stack Pointer
  89.     804    ISP    Interrupt Stack Pointer
  90.  
  91.     L  Register list of the type d0-d7/a0-a7 etc.
  92.        (New!  Improved!  Can also hold fp0-fp7, as well!)
  93.        The assembler tries to see if the registers match the insn by
  94.        looking at where the insn wants them stored.
  95.  
  96.     l  Register list like L, but with all the bits reversed.
  97.        Used for going the other way. . .
  98.  
  99.  They are all stored as 6 bits using an address mode and a register number;
  100.  they differ in which addressing modes they match.
  101.  
  102.    *  all                    (modes 0-6,7.*)
  103.    ~  alterable memory                (modes 2-6,7.0,7.1)(not 0,1,7.~)
  104.    %  alterable                    (modes 0-6,7.0,7.1)(not 7.~)
  105.    ;  data                    (modes 0,2-6,7.*)(not 1)
  106.    @  data, but not immediate            (modes 0,2-6,7.? ? ?)(not 1,7.?)  This may really be ;, the 68020 book says it is
  107.    !  control                    (modes 2,5,6,7.*-)(not 0,1,3,4,7.4)
  108.    &  alterable control                (modes 2,5,6,7.0,7.1)(not 0,1,7.? ? ?)
  109.    $  alterable data                (modes 0,2-6,7.0,7.1)(not 1,7.~)
  110.    ?  alterable control, or data register    (modes 0,2,5,6,7.0,7.1)(not 1,3,4,7.~)
  111.    /  control, or data register            (modes 0,2,5,6,7.0,7.1,7.2,7.3)(not 1,3,4,7.4)
  112. */
  113.  
  114. /* JF: for the 68851 */
  115. /*
  116.    I didn't use much imagination in choosing the 
  117.    following codes, so many of them aren't very
  118.    mnemonic. -rab
  119.  
  120.    P  pmmu register
  121.     Possible values:
  122.     000    TC    Translation Control reg
  123.     100    CAL    Current Access Level
  124.     101    VAL    Validate Access Level
  125.     110    SCC    Stack Change Control
  126.     111    AC    Access Control
  127.  
  128.    W  wide pmmu registers
  129.     Possible values:
  130.     001    DRP    Dma Root Pointer
  131.     010    SRP    Supervisor Root Pointer
  132.     011    CRP    Cpu Root Pointer
  133.  
  134.    f    function code register
  135.     0    SFC
  136.     1    DFC
  137.  
  138.    V    VAL register only
  139.  
  140.    X    BADx, BACx
  141.     100    BAD    Breakpoint Acknowledge Data
  142.     101    BAC    Breakpoint Acknowledge Control
  143.  
  144.    Y    PSR
  145.    Z    PCSR
  146.  
  147.    |    memory         (modes 2-6, 7.*)
  148.  
  149. */
  150.  
  151. /* Places to put an operand, for non-general operands:
  152.    s  source, low bits of first word.
  153.    d  dest, shifted 9 in first word
  154.    1  second word, shifted 12
  155.    2  second word, shifted 6
  156.    3  second word, shifted 0
  157.    4  third word, shifted 12
  158.    5  third word, shifted 6
  159.    6  third word, shifted 0
  160.    7  second word, shifted 7
  161.    8  second word, shifted 10
  162.    D  store in both place 1 and place 3; for divul and divsl.
  163.    B  first word, low byte, for branch displacements
  164.    W  second word (entire), for branch displacements
  165.    L  second and third words (entire), for branch displacements
  166.    b  second word, low byte
  167.    w  second word (entire) [variable word/long branch offset for dbra]
  168.    l  second and third word (entire)
  169.    g  variable branch offset for bra and similar instructions.
  170.       The place to store depends on the magnitude of offset.
  171.    t  store in both place 7 and place 8; for floating point operations
  172.    c  branch offset for cpBcc operations.
  173.       The place to store is word two if bit six of word one is zero,
  174.       and words two and three if bit six of word one is one.
  175.    i  Increment by two, to skip over coprocessor extended operands.   Only
  176.       works with the 'I' format.
  177.    k  Dynamic K-factor field.   Bits 6-4 of word 2, used as a register number.
  178.       Also used for dynamic fmovem instruction.
  179.    C  floating point coprocessor constant - 7 bits.  Also used for static
  180.       K-factors...
  181.    j  Movec register #, stored in 12 low bits of second word.
  182.  
  183.  Places to put operand, for general operands:
  184.    d  destination, shifted 6 bits in first word
  185.    b  source, at low bit of first word, and immediate uses one byte
  186.    w  source, at low bit of first word, and immediate uses two bytes
  187.    l  source, at low bit of first word, and immediate uses four bytes
  188.    s  source, at low bit of first word.
  189.       Used sometimes in contexts where immediate is not allowed anyway.
  190.    f  single precision float, low bit of 1st word, immediate uses 4 bytes
  191.    F  double precision float, low bit of 1st word, immediate uses 8 bytes
  192.    x  extended precision float, low bit of 1st word, immediate uses 12 bytes
  193.    p  packed float, low bit of 1st word, immediate uses 12 bytes
  194. */
  195.  
  196. #define one(x) ((x) << 16)
  197. #define two(x, y) (((x) << 16) + y)
  198.  
  199. /*
  200.     *** DANGER WILL ROBINSON ***
  201.  
  202.    The assembler requires that all instances of the same mnemonic must be
  203.    consecutive.  If they aren't, the assembler will bomb at runtime
  204.  */
  205. struct m68k_opcode m68k_opcodes[] =
  206. {
  207. {"abcd",    one(0140400),        one(0170770),        "DsDd"},
  208. {"abcd",    one(0140410),        one(0170770),        "-s-d"},
  209.  
  210.         /* Add instructions */
  211. {"addal",    one(0150700),        one(0170700),        "*lAd"},
  212. {"addaw",    one(0150300),        one(0170700),        "*wAd"},
  213. {"addib",    one(0003000),        one(0177700),        "#b$b"},
  214. {"addil",    one(0003200),        one(0177700),        "#l$l"},
  215. {"addiw",    one(0003100),        one(0177700),        "#w$w"},
  216. {"addqb",    one(0050000),        one(0170700),        "Qd$b"},
  217. {"addql",    one(0050200),        one(0170700),        "Qd%l"},
  218. {"addqw",    one(0050100),        one(0170700),        "Qd%w"},
  219.  
  220. {"addb",    one(0050000),        one(0170700),        "Qd$b"},    /* addq written as add */
  221. {"addb",    one(0003000),        one(0177700),        "#b$b"},    /* addi written as add */
  222. {"addb",    one(0150000),        one(0170700),        ";bDd"},    /* addb <ea>,    Dd */
  223. {"addb",    one(0150400),        one(0170700),        "Dd~b"},    /* addb Dd,    <ea> */
  224.  
  225. {"addw",    one(0050100),        one(0170700),        "Qd%w"},    /* addq written as add */
  226. {"addw",    one(0003100),        one(0177700),        "#w$w"},    /* addi written as add */
  227. {"addw",    one(0150300),        one(0170700),        "*wAd"},    /* adda written as add */
  228. {"addw",    one(0150100),        one(0170700),        "*wDd"},    /* addw <ea>,    Dd */
  229. {"addw",    one(0150500),        one(0170700),        "Dd~w"},    /* addw Dd,    <ea> */
  230.  
  231. {"addl",    one(0050200),        one(0170700),        "Qd%l"},    /* addq written as add */
  232. {"addl",    one(0003200),        one(0177700),        "#l$l"},    /* addi written as add */
  233. {"addl",    one(0150700),        one(0170700),        "*lAd"},    /* adda written as add */
  234. {"addl",    one(0150200),        one(0170700),        "*lDd"},    /* addl <ea>,    Dd */
  235. {"addl",    one(0150600),        one(0170700),        "Dd~l"},    /* addl Dd,    <ea> */
  236.  
  237. {"addxb",    one(0150400),        one(0170770),        "DsDd"},
  238. {"addxb",    one(0150410),        one(0170770),        "-s-d"},
  239. {"addxl",    one(0150600),        one(0170770),        "DsDd"},
  240. {"addxl",    one(0150610),        one(0170770),        "-s-d"},
  241. {"addxw",    one(0150500),        one(0170770),        "DsDd"},
  242. {"addxw",    one(0150510),        one(0170770),        "-s-d"},
  243.  
  244. {"andib",    one(0001000),        one(0177700),        "#b$b"},
  245. {"andib",    one(0001074),        one(0177777),        "#bCb"},    /* andi to ccr */
  246. {"andiw",    one(0001100),        one(0177700),        "#w$w"},
  247. {"andiw",    one(0001174),        one(0177777),        "#wSw"},    /* andi to sr */
  248. {"andil",    one(0001200),        one(0177700),        "#l$l"},
  249.  
  250. {"andb",    one(0001000),        one(0177700),        "#b$b"},    /* andi written as or */
  251. {"andb",    one(0001074),        one(0177777),        "#bCb"},    /* andi to ccr */
  252. {"andb",    one(0140000),        one(0170700),        ";bDd"},    /* memory to register */
  253. {"andb",    one(0140400),        one(0170700),        "Dd~b"},    /* register to memory */
  254. {"andw",    one(0001100),        one(0177700),        "#w$w"},    /* andi written as or */
  255. {"andw",    one(0001174),        one(0177777),        "#wSw"},    /* andi to sr */
  256. {"andw",    one(0140100),        one(0170700),        ";wDd"},    /* memory to register */
  257. {"andw",    one(0140500),        one(0170700),        "Dd~w"},    /* register to memory */
  258. {"andl",    one(0001200),        one(0177700),        "#l$l"},    /* andi written as or */
  259. {"andl",    one(0140200),        one(0170700),        ";lDd"},    /* memory to register */
  260. {"andl",    one(0140600),        one(0170700),        "Dd~l"},    /* register to memory */
  261.  
  262. {"aslb",    one(0160400),        one(0170770),        "QdDs"},
  263. {"aslb",    one(0160440),        one(0170770),        "DdDs"},
  264. {"asll",    one(0160600),        one(0170770),        "QdDs"},
  265. {"asll",    one(0160640),        one(0170770),        "DdDs"},
  266. {"aslw",    one(0160500),        one(0170770),        "QdDs"},
  267. {"aslw",    one(0160540),        one(0170770),        "DdDs"},
  268. {"aslw",    one(0160700),        one(0177700),        "~s"},    /* Shift memory */
  269. {"asrb",    one(0160000),        one(0170770),        "QdDs"},
  270. {"asrb",    one(0160040),        one(0170770),        "DdDs"},
  271. {"asrl",    one(0160200),        one(0170770),        "QdDs"},
  272. {"asrl",    one(0160240),        one(0170770),        "DdDs"},
  273. {"asrw",    one(0160100),        one(0170770),        "QdDs"},
  274. {"asrw",    one(0160140),        one(0170770),        "DdDs"},
  275. {"asrw",    one(0160300),        one(0177700),        "~s"},    /* Shift memory */
  276.  
  277. /* Fixed-size branches with 16-bit offsets */
  278.  
  279. {"bhi",        one(0061000),        one(0177777),        "BW"},
  280. {"bls",        one(0061400),        one(0177777),        "BW"},
  281. {"bcc",        one(0062000),        one(0177777),        "BW"},
  282. {"bcs",        one(0062400),        one(0177777),        "BW"},
  283. {"bne",        one(0063000),        one(0177777),        "BW"},
  284. {"beq",        one(0063400),        one(0177777),        "BW"},
  285. {"bvc",        one(0064000),        one(0177777),        "BW"},
  286. {"bvs",        one(0064400),        one(0177777),        "BW"},
  287. {"bpl",        one(0065000),        one(0177777),        "BW"},
  288. {"bmi",        one(0065400),        one(0177777),        "BW"},
  289. {"bge",        one(0066000),        one(0177777),        "BW"},
  290. {"blt",        one(0066400),        one(0177777),        "BW"},
  291. {"bgt",        one(0067000),        one(0177777),        "BW"},
  292. {"ble",        one(0067400),        one(0177777),        "BW"},
  293. {"bra",        one(0060000),        one(0177777),        "BW"},
  294. {"bsr",        one(0060400),        one(0177777),        "BW"},
  295.  
  296. /* Fixed-size branches with short (byte) offsets */
  297.  
  298. {"bhis",    one(0061000),        one(0177400),        "BB"},
  299. {"blss",    one(0061400),        one(0177400),        "BB"},
  300. {"bccs",    one(0062000),        one(0177400),        "BB"},
  301. {"bcss",    one(0062400),        one(0177400),        "BB"},
  302. {"bnes",    one(0063000),        one(0177400),        "BB"},
  303. {"beqs",    one(0063400),        one(0177400),        "BB"},
  304. {"bvcs",    one(0064000),        one(0177400),        "BB"},
  305. {"bvss",    one(0064400),        one(0177400),        "BB"},
  306. {"bpls",    one(0065000),        one(0177400),        "BB"},
  307. {"bmis",    one(0065400),        one(0177400),        "BB"},
  308. {"bges",    one(0066000),        one(0177400),        "BB"},
  309. {"blts",    one(0066400),        one(0177400),        "BB"},
  310. {"bgts",    one(0067000),        one(0177400),        "BB"},
  311. {"bles",    one(0067400),        one(0177400),        "BB"},
  312. {"bras",    one(0060000),        one(0177400),        "BB"},
  313. {"bsrs",    one(0060400),        one(0177400),        "BB"},
  314.  
  315. /* Fixed-size branches with long (32-bit) offsets */
  316.  
  317. {"bhil",    one(0061377),        one(0177777),        "BL"},
  318. {"blsl",    one(0061777),        one(0177777),        "BL"},
  319. {"bccl",    one(0062377),        one(0177777),        "BL"},
  320. {"bcsl",    one(0062777),        one(0177777),        "BL"},
  321. {"bnel",    one(0063377),        one(0177777),        "BL"},
  322. {"beql",    one(0063777),        one(0177777),        "BL"},
  323. {"bvcl",    one(0064377),        one(0177777),        "BL"},
  324. {"bvsl",    one(0064777),        one(0177777),        "BL"},
  325. {"bpll",    one(0065377),        one(0177777),        "BL"},
  326. {"bmil",    one(0065777),        one(0177777),        "BL"},
  327. {"bgel",    one(0066377),        one(0177777),        "BL"},
  328. {"bltl",    one(0066777),        one(0177777),        "BL"},
  329. {"bgtl",    one(0067377),        one(0177777),        "BL"},
  330. {"blel",    one(0067777),        one(0177777),        "BL"},
  331. {"bral",    one(0060377),        one(0177777),        "BL"},
  332. {"bsrl",    one(0060777),        one(0177777),        "BL"},
  333.  
  334. /* We now return you to our regularly scheduled instruction set */
  335.  
  336. {"bchg",    one(0000500),        one(0170700),        "Dd$s"},
  337. {"bchg",    one(0004100),        one(0177700),        "#b$s"},
  338. {"bclr",    one(0000600),        one(0170700),        "Dd$s"},
  339. {"bclr",    one(0004200),        one(0177700),        "#b$s"},
  340. {"bfchg",    two(0165300, 0),    two(0177700, 0170000),    "?sO2O3"},
  341. {"bfclr",    two(0166300, 0),    two(0177700, 0170000),    "?sO2O3"},
  342. {"bfexts",    two(0165700, 0),    two(0177700, 0100000),    "/sO2O3D1"},
  343. {"bfextu",    two(0164700, 0),    two(0177700, 0100000),    "/sO2O3D1"},
  344. {"bfffo",    two(0166700, 0),    two(0177700, 0100000),    "/sO2O3D1"},
  345. {"bfins",    two(0167700, 0),    two(0177700, 0100000),    "D1?sO2O3"},
  346. {"bfset",    two(0167300, 0),    two(0177700, 0170000),    "?sO2O3"},
  347. {"bftst",    two(0164300, 0),    two(0177700, 0170000),    "/sO2O3"},
  348. {"bset",    one(0000700),        one(0170700),        "Dd$s"},
  349. {"bset",    one(0004300),        one(0177700),        "#b$s"},
  350. {"btst",    one(0000400),        one(0170700),        "Dd@s"},
  351. {"btst",    one(0004000),        one(0177700),        "#b@s"},
  352.  
  353. {"bkpt",    one(0044110),        one(0177770),        "Qs"},
  354.  
  355. {"callm",    one(0003300),        one(0177700),        "#b!s"},
  356. {"cas2l",    two(0007374, 0),    two(0177777, 0107070),    "D3D6D2D5R1R4"}, /* JF FOO this is really a 3 word ins */
  357. {"cas2w",    two(0006374, 0),    two(0177777, 0107070),    "D3D6D2D5R1R4"}, /* JF ditto */
  358. {"casb",    two(0005300, 0),    two(0177700, 0177070),    "D3D2~s"},
  359. {"casl",    two(0007300, 0),    two(0177700, 0177070),    "D3D2~s"},
  360. {"casw",    two(0006300, 0),    two(0177700, 0177070),    "D3D2~s"},
  361.  
  362. /*  {"chk",    one(0040600),        one(0170700),        ";wDd"}, JF FOO this looks wrong */
  363. {"chk2b",    two(0000300, 0004000),    two(0177700, 07777),    "!sR1"},
  364. {"chk2l",    two(0002300, 0004000),    two(0177700, 07777),    "!sR1"},
  365. {"chk2w",    two(0001300, 0004000),    two(0177700, 07777),    "!sR1"},
  366. {"chkl",    one(0040400),        one(0170700),        ";lDd"},
  367. {"chkw",    one(0040600),        one(0170700),        ";wDd"},
  368. {"clrb",    one(0041000),        one(0177700),        "$s"},
  369. {"clrl",    one(0041200),        one(0177700),        "$s"},
  370. {"clrw",    one(0041100),        one(0177700),        "$s"},
  371.  
  372. {"cmp2b",    two(0000300, 0),    two(0177700, 07777),    "!sR1"},
  373. {"cmp2l",    two(0002300, 0),    two(0177700, 07777),    "!sR1"},
  374. {"cmp2w",    two(0001300, 0),    two(0177700, 07777),    "!sR1"},
  375. {"cmpal",    one(0130700),        one(0170700),        "*lAd"},
  376. {"cmpaw",    one(0130300),        one(0170700),        "*wAd"},
  377. {"cmpib",    one(0006000),        one(0177700),        "#b;b"},
  378. {"cmpil",    one(0006200),        one(0177700),        "#l;l"},
  379. {"cmpiw",    one(0006100),        one(0177700),        "#w;w"},
  380. {"cmpb",    one(0006000),        one(0177700),        "#b;b"},    /* cmpi written as cmp */
  381. {"cmpb",    one(0130000),        one(0170700),        ";bDd"},
  382. {"cmpw",    one(0006100),        one(0177700),        "#w;w"},
  383. {"cmpw",    one(0130100),        one(0170700),        "*wDd"},
  384. {"cmpw",    one(0130300),        one(0170700),        "*wAd"},    /* cmpa written as cmp */
  385. {"cmpl",    one(0006200),        one(0177700),        "#l;l"},
  386. {"cmpl",    one(0130200),        one(0170700),        "*lDd"},
  387. {"cmpl",    one(0130700),        one(0170700),        "*lAd"},
  388. {"cmpmb",    one(0130410),        one(0170770),        "+s+d"},
  389. {"cmpml",    one(0130610),        one(0170770),        "+s+d"},
  390. {"cmpmw",    one(0130510),        one(0170770),        "+s+d"},
  391.  
  392. {"dbcc",    one(0052310),        one(0177770),        "DsBw"},
  393. {"dbcs",    one(0052710),        one(0177770),        "DsBw"},
  394. {"dbeq",    one(0053710),        one(0177770),        "DsBw"},
  395. {"dbf",        one(0050710),        one(0177770),        "DsBw"},
  396. {"dbge",    one(0056310),        one(0177770),        "DsBw"},
  397. {"dbgt",    one(0057310),        one(0177770),        "DsBw"},
  398. {"dbhi",    one(0051310),        one(0177770),        "DsBw"},
  399. {"dble",    one(0057710),        one(0177770),        "DsBw"},
  400. {"dbls",    one(0051710),        one(0177770),        "DsBw"},
  401. {"dblt",    one(0056710),        one(0177770),        "DsBw"},
  402. {"dbmi",    one(0055710),        one(0177770),        "DsBw"},
  403. {"dbne",    one(0053310),        one(0177770),        "DsBw"},
  404. {"dbpl",    one(0055310),        one(0177770),        "DsBw"},
  405. {"dbra",    one(0050710),        one(0177770),        "DsBw"},
  406. {"dbt",        one(0050310),        one(0177770),        "DsBw"},
  407. {"dbvc",    one(0054310),        one(0177770),        "DsBw"},
  408. {"dbvs",    one(0054710),        one(0177770),        "DsBw"},
  409.  
  410. {"divsl",    two(0046100, 0006000),    two(0177700, 0107770),    ";lD3D1"},
  411. {"divsl",    two(0046100, 0004000),    two(0177700, 0107770),    ";lDD"},
  412. {"divsll",    two(0046100, 0004000),    two(0177700, 0107770),    ";lD3D1"},
  413. {"divsw",    one(0100700),        one(0170700),        ";wDd"},
  414. {"divs",    one(0100700),        one(0170700),        ";wDd"},
  415. {"divul",    two(0046100, 0002000),    two(0177700, 0107770),    ";lD3D1"},
  416. {"divul",    two(0046100, 0000000),    two(0177700, 0107770),    ";lDD"},
  417. {"divull",    two(0046100, 0000000),    two(0177700, 0107770),    ";lD3D1"},
  418. {"divuw",    one(0100300),        one(0170700),        ";wDd"},
  419. {"divu",    one(0100300),        one(0170700),        ";wDd"},
  420. {"eorb",    one(0005000),        one(0177700),        "#b$s"},    /* eori written as or */
  421. {"eorb",    one(0005074),        one(0177777),        "#bCs"},    /* eori to ccr */
  422. {"eorb",    one(0130400),        one(0170700),        "Dd$s"},    /* register to memory */
  423. {"eorib",    one(0005000),        one(0177700),        "#b$s"},
  424. {"eorib",    one(0005074),        one(0177777),        "#bCs"},    /* eori to ccr */
  425. {"eoril",    one(0005200),        one(0177700),        "#l$s"},
  426. {"eoriw",    one(0005100),        one(0177700),        "#w$s"},
  427. {"eoriw",    one(0005174),        one(0177777),        "#wSs"},    /* eori to sr */
  428. {"eorl",    one(0005200),        one(0177700),        "#l$s"},
  429. {"eorl",    one(0130600),        one(0170700),        "Dd$s"},
  430. {"eorw",    one(0005100),        one(0177700),        "#w$s"},
  431. {"eorw",    one(0005174),        one(0177777),        "#wSs"},    /* eori to sr */
  432. {"eorw",    one(0130500),        one(0170700),        "Dd$s"},
  433.  
  434. {"exg",        one(0140500),        one(0170770),        "DdDs"},
  435. {"exg",        one(0140510),        one(0170770),        "AdAs"},
  436. {"exg",        one(0140610),        one(0170770),        "DdAs"},
  437. {"exg",        one(0140610),        one(0170770),        "AsDd"},
  438.  
  439. {"extw",    one(0044200),        one(0177770),        "Ds"},
  440. {"extl",    one(0044300),        one(0177770),        "Ds"},
  441. {"extbl",    one(0044700),        one(0177770),        "Ds"},
  442. {"extb.l",    one(0044700),        one(0177770),        "Ds"},    /* Not sure we should support this one*/
  443.  
  444. {"illegal",    one(0045374),        one(0177777),        ""},
  445. {"jmp",        one(0047300),        one(0177700),        "!s"},
  446. {"jsr",        one(0047200),        one(0177700),        "!s"},
  447. {"lea",        one(0040700),        one(0170700),        "!sAd"},
  448. {"linkw",    one(0047120),        one(0177770),        "As#w"},
  449. {"linkl",    one(0044010),        one(0177770),        "As#l"},
  450. {"link",    one(0047120),        one(0177770),        "As#w"},
  451. {"link",    one(0044010),        one(0177770),        "As#l"},
  452.  
  453. {"lslb",    one(0160410),        one(0170770),        "QdDs"},    /* lsrb #Q,    Ds */
  454. {"lslb",    one(0160450),        one(0170770),        "DdDs"},    /* lsrb Dd,    Ds */
  455. {"lslw",    one(0160510),        one(0170770),        "QdDs"},    /* lsrb #Q,    Ds */
  456. {"lslw",    one(0160550),        one(0170770),        "DdDs"},    /* lsrb Dd,    Ds */
  457. {"lslw",    one(0161700),        one(0177700),        "~s"},    /* Shift memory */
  458. {"lsll",    one(0160610),        one(0170770),        "QdDs"},    /* lsrb #Q,    Ds */
  459. {"lsll",    one(0160650),        one(0170770),        "DdDs"},    /* lsrb Dd,    Ds */
  460.  
  461. {"lsrb",    one(0160010),        one(0170770),        "QdDs"} /* lsrb #Q,    Ds */,
  462. {"lsrb",    one(0160050),        one(0170770),        "DdDs"},    /* lsrb Dd,    Ds */
  463. {"lsrl",    one(0160210),        one(0170770),        "QdDs"},    /* lsrb #Q,    Ds */
  464. {"lsrl",    one(0160250),        one(0170770),        "DdDs"},    /* lsrb #Q,    Ds */
  465. {"lsrw",    one(0160110),        one(0170770),        "QdDs"},    /* lsrb #Q,    Ds */
  466. {"lsrw",    one(0160150),        one(0170770),        "DdDs"},    /* lsrb #Q,    Ds */
  467. {"lsrw",    one(0161300),        one(0177700),        "~s"},    /* Shift memory */
  468.  
  469. {"moveal",    one(0020100),        one(0170700),        "*lAd"},
  470. {"moveaw",    one(0030100),        one(0170700),        "*wAd"},
  471. {"moveb",    one(0010000),        one(0170000),        ";b$d"},    /* move */
  472. {"movel",    one(0070000),        one(0170400),        "MsDd"},    /* moveq written as move */
  473. {"movel",    one(0020000),        one(0170000),        "*l$d"},
  474. {"movel",    one(0020100),        one(0170700),        "*lAd"},
  475. {"movel",    one(0047140),        one(0177770),        "AsUd"},    /* move to USP */
  476. {"movel",    one(0047150),        one(0177770),        "UdAs"},    /* move from USP */
  477.  
  478. {"movec",    one(0047173),        one(0177777),        "R1Jj"},
  479. {"movec",    one(0047173),        one(0177777),        "R1#j"},
  480. {"movec",    one(0047172),        one(0177777),        "JjR1"},
  481. {"movec",    one(0047172),        one(0177777),        "#jR1"},
  482.  
  483. /* JF added these next four for the assembler */
  484. {"moveml",    one(0044300),        one(0177700),        "Lw&s"},    /* movem reg to mem. */
  485. {"moveml",    one(0044340),        one(0177770),        "lw-s"},    /* movem reg to autodecrement. */
  486. {"moveml",    one(0046300),        one(0177700),        "!sLw"},    /* movem mem to reg. */
  487. {"moveml",    one(0046330),        one(0177770),        "+sLw"},    /* movem autoinc to reg. */
  488.  
  489. {"moveml",    one(0044300),        one(0177700),        "#w&s"},    /* movem reg to mem. */
  490. {"moveml",    one(0044340),        one(0177770),        "#w-s"},    /* movem reg to autodecrement. */
  491. {"moveml",    one(0046300),        one(0177700),        "!s#w"},    /* movem mem to reg. */
  492. {"moveml",    one(0046330),        one(0177770),        "+s#w"},    /* movem autoinc to reg. */
  493.  
  494. /* JF added these next four for the assembler */
  495. {"movemw",    one(0044200),        one(0177700),        "Lw&s"},    /* movem reg to mem. */
  496. {"movemw",    one(0044240),        one(0177770),        "lw-s"},    /* movem reg to autodecrement. */
  497. {"movemw",    one(0046200),        one(0177700),        "!sLw"},    /* movem mem to reg. */
  498. {"movemw",    one(0046230),        one(0177770),        "+sLw"},    /* movem autoinc to reg. */
  499.  
  500. {"movemw",    one(0044200),        one(0177700),        "#w&s"},    /* movem reg to mem. */
  501. {"movemw",    one(0044240),        one(0177770),        "#w-s"},    /* movem reg to autodecrement. */
  502. {"movemw",    one(0046200),        one(0177700),        "!s#w"},    /* movem mem to reg. */
  503. {"movemw",    one(0046230),        one(0177770),        "+s#w"},    /* movem autoinc to reg. */
  504.  
  505. {"movepl",    one(0000510),        one(0170770),        "dsDd"},    /* memory to register */
  506. {"movepl",    one(0000710),        one(0170770),        "Ddds"},    /* register to memory */
  507. {"movepw",    one(0000410),        one(0170770),        "dsDd"},    /* memory to register */
  508. {"movepw",    one(0000610),        one(0170770),        "Ddds"},    /* register to memory */
  509. {"moveq",    one(0070000),        one(0170400),        "MsDd"},
  510. {"movew",    one(0030000),        one(0170000),        "*w$d"},
  511. {"movew",    one(0030100),        one(0170700),        "*wAd"},    /* movea,    written as move */
  512. {"movew",    one(0040300),        one(0177700),        "Ss$s"},    /* Move from sr */
  513. {"movew",    one(0041300),        one(0177700),        "Cs$s"},    /* Move from ccr */
  514. {"movew",    one(0042300),        one(0177700),        ";wCd"},    /* move to ccr */
  515. {"movew",    one(0043300),        one(0177700),        ";wSd"},    /* move to sr */
  516.  
  517. {"movesb",    two(0007000, 0),    two(0177700, 07777),    "~sR1"},     /* moves from memory */
  518. {"movesb",    two(0007000, 04000),    two(0177700, 07777),    "R1~s"},     /* moves to memory */
  519. {"movesl",    two(0007200, 0),    two(0177700, 07777),    "~sR1"},     /* moves from memory */
  520. {"movesl",    two(0007200, 04000),    two(0177700, 07777),    "R1~s"},     /* moves to memory */
  521. {"movesw",    two(0007100, 0),    two(0177700, 07777),    "~sR1"},     /* moves from memory */
  522. {"movesw",    two(0007100, 04000),    two(0177700, 07777),    "R1~s"},     /* moves to memory */
  523.  
  524. {"mulsl",    two(0046000, 004000),    two(0177700, 0107770),    ";lD1"},
  525. {"mulsl",    two(0046000, 006000),    two(0177700, 0107770),    ";lD3D1"},
  526. {"mulsw",    one(0140700),        one(0170700),        ";wDd"},
  527. {"muls",    one(0140700),        one(0170700),        ";wDd"},
  528. {"mulul",    two(0046000, 000000),    two(0177700, 0107770),    ";lD1"},
  529. {"mulul",    two(0046000, 002000),    two(0177700, 0107770),    ";lD3D1"},
  530. {"muluw",    one(0140300),        one(0170700),        ";wDd"},
  531. {"mulu",    one(0140300),        one(0170700),        ";wDd"},
  532. {"nbcd",    one(0044000),        one(0177700),        "$s"},
  533. {"negb",    one(0042000),        one(0177700),        "$s"},
  534. {"negl",    one(0042200),        one(0177700),        "$s"},
  535. {"negw",    one(0042100),        one(0177700),        "$s"},
  536. {"negxb",    one(0040000),        one(0177700),        "$s"},
  537. {"negxl",    one(0040200),        one(0177700),        "$s"},
  538. {"negxw",    one(0040100),        one(0177700),        "$s"},
  539. {"nop",        one(0047161),        one(0177777),        ""},
  540. {"notb",    one(0043000),        one(0177700),        "$s"},
  541. {"notl",    one(0043200),        one(0177700),        "$s"},
  542. {"notw",    one(0043100),        one(0177700),        "$s"},
  543.  
  544. {"orb",        one(0000000),        one(0177700),        "#b$s"},    /* ori written as or */
  545. {"orb",        one(0000074),        one(0177777),        "#bCs"},    /* ori to ccr */
  546. {"orb",        one(0100000),        one(0170700),        ";bDd"},    /* memory to register */
  547. {"orb",        one(0100400),        one(0170700),        "Dd~s"},    /* register to memory */
  548. {"orib",    one(0000000),        one(0177700),        "#b$s"},
  549. {"orib",    one(0000074),        one(0177777),        "#bCs"},    /* ori to ccr */
  550. {"oril",    one(0000200),        one(0177700),        "#l$s"},
  551. {"oriw",    one(0000100),        one(0177700),        "#w$s"},
  552. {"oriw",    one(0000174),        one(0177777),        "#wSs"},    /* ori to sr */
  553. {"orl",        one(0000200),        one(0177700),        "#l$s"},
  554. {"orl",        one(0100200),        one(0170700),        ";lDd"},    /* memory to register */
  555. {"orl",        one(0100600),        one(0170700),        "Dd~s"},    /* register to memory */
  556. {"orw",        one(0000100),        one(0177700),        "#w$s"},
  557. {"orw",        one(0000174),        one(0177777),        "#wSs"},    /* ori to sr */
  558. {"orw",        one(0100100),        one(0170700),        ";wDd"},    /* memory to register */
  559. {"orw",        one(0100500),        one(0170700),        "Dd~s"},    /* register to memory */
  560.  
  561. {"pack",    one(0100500),        one(0170770),        "DsDd#w"},    /* pack Ds,    Dd,    #w */
  562. {"pack",    one(0100510),        one(0170770),        "-s-d#w"},    /* pack -(As),    -(Ad),    #w */
  563. {"pea",        one(0044100),        one(0177700),        "!s"},
  564. {"reset",    one(0047160),        one(0177777),        ""},
  565.  
  566. {"rolb",    one(0160430),        one(0170770),        "QdDs"},    /* rorb #Q,    Ds */
  567. {"rolb",    one(0160470),        one(0170770),        "DdDs"},    /* rorb Dd,    Ds */
  568. {"roll",    one(0160630),        one(0170770),        "QdDs"},    /* rorb #Q,    Ds */
  569. {"roll",    one(0160670),        one(0170770),        "DdDs"},    /* rorb Dd,    Ds */
  570. {"rolw",    one(0160530),        one(0170770),        "QdDs"},    /* rorb #Q,    Ds */
  571. {"rolw",    one(0160570),        one(0170770),        "DdDs"},    /* rorb Dd,    Ds */
  572. {"rolw",    one(0163700),        one(0177700),        "~s"},    /* Rotate memory */
  573. {"rorb",    one(0160030),        one(0170770),        "QdDs"},    /* rorb #Q,    Ds */
  574. {"rorb",    one(0160070),        one(0170770),        "DdDs"},    /* rorb Dd,    Ds */
  575. {"rorl",    one(0160230),        one(0170770),        "QdDs"},    /* rorb #Q,    Ds */
  576. {"rorl",    one(0160270),        one(0170770),        "DdDs"},    /* rorb Dd,    Ds */
  577. {"rorw",    one(0160130),        one(0170770),        "QdDs"},    /* rorb #Q,    Ds */
  578. {"rorw",    one(0160170),        one(0170770),        "DdDs"},    /* rorb Dd,    Ds */
  579. {"rorw",    one(0163300),        one(0177700),        "~s"},    /* Rotate memory */
  580.  
  581. {"roxlb",    one(0160420),        one(0170770),        "QdDs"},    /* roxrb #Q,    Ds */
  582. {"roxlb",    one(0160460),        one(0170770),        "DdDs"},    /* roxrb Dd,    Ds */
  583. {"roxll",    one(0160620),        one(0170770),        "QdDs"},    /* roxrb #Q,    Ds */
  584. {"roxll",    one(0160660),        one(0170770),        "DdDs"},    /* roxrb Dd,    Ds */
  585. {"roxlw",    one(0160520),        one(0170770),        "QdDs"},    /* roxrb #Q,    Ds */
  586. {"roxlw",    one(0160560),        one(0170770),        "DdDs"},    /* roxrb Dd,    Ds */
  587. {"roxlw",    one(0162700),        one(0177700),        "~s"},    /* Rotate memory */
  588. {"roxrb",    one(0160020),        one(0170770),        "QdDs"},    /* roxrb #Q,    Ds */
  589. {"roxrb",    one(0160060),        one(0170770),        "DdDs"},    /* roxrb Dd,    Ds */
  590. {"roxrl",    one(0160220),        one(0170770),        "QdDs"},    /* roxrb #Q,    Ds */
  591. {"roxrl",    one(0160260),        one(0170770),        "DdDs"},    /* roxrb Dd,    Ds */
  592. {"roxrw",    one(0160120),        one(0170770),        "QdDs"},    /* roxrb #Q,    Ds */
  593. {"roxrw",    one(0160160),        one(0170770),        "DdDs"},    /* roxrb Dd,    Ds */
  594. {"roxrw",    one(0162300),        one(0177700),        "~s"},    /* Rotate memory */
  595.  
  596. {"rtd",        one(0047164),        one(0177777),        "#w"},
  597. {"rte",        one(0047163),        one(0177777),        ""},
  598. {"rtm",        one(0003300),        one(0177760),        "Rs"},
  599. {"rtr",        one(0047167),        one(0177777),        ""},
  600. {"rts",        one(0047165),        one(0177777),        ""},
  601.  
  602. {"scc",        one(0052300),        one(0177700),        "$s"},
  603. {"scs",        one(0052700),        one(0177700),        "$s"},
  604. {"seq",        one(0053700),        one(0177700),        "$s"},
  605. {"sf",        one(0050700),        one(0177700),        "$s"},
  606. {"sge",        one(0056300),        one(0177700),        "$s"},
  607. {"sgt",        one(0057300),        one(0177700),        "$s"},
  608. {"shi",        one(0051300),        one(0177700),        "$s"},
  609. {"sle",        one(0057700),        one(0177700),        "$s"},
  610. {"sls",        one(0051700),        one(0177700),        "$s"},
  611. {"slt",        one(0056700),        one(0177700),        "$s"},
  612. {"smi",        one(0055700),        one(0177700),        "$s"},
  613. {"sne",        one(0053300),        one(0177700),        "$s"},
  614. {"spl",        one(0055300),        one(0177700),        "$s"},
  615. {"st",        one(0050300),        one(0177700),        "$s"},
  616. {"svc",        one(0054300),        one(0177700),        "$s"},
  617. {"svs",        one(0054700),        one(0177700),        "$s"},
  618.  
  619. {"sbcd",    one(0100400),        one(0170770),        "DsDd"},
  620. {"sbcd",    one(0100410),        one(0170770),        "-s-d"},
  621. {"stop",    one(0047162),        one(0177777),        "#w"},
  622.  
  623. {"subal",    one(0110700),        one(0170700),        "*lAd"},
  624. {"subaw",    one(0110300),        one(0170700),        "*wAd"},
  625. {"subb",    one(0050400),        one(0170700),        "Qd%s"},    /* subq written as sub */
  626. {"subb",    one(0002000),        one(0177700),        "#b$s"},    /* subi written as sub */
  627. {"subb",    one(0110000),        one(0170700),        ";bDd"},    /* subb ? ?,    Dd */
  628. {"subb",    one(0110400),        one(0170700),        "Dd~s"},    /* subb Dd,    ? ? */
  629. {"subib",    one(0002000),        one(0177700),        "#b$s"},
  630. {"subil",    one(0002200),        one(0177700),        "#l$s"},
  631. {"subiw",    one(0002100),        one(0177700),        "#w$s"},
  632. {"subl",    one(0050600),        one(0170700),        "Qd%s"},
  633. {"subl",    one(0002200),        one(0177700),        "#l$s"},
  634. {"subl",    one(0110700),        one(0170700),        "*lAd"},
  635. {"subl",    one(0110200),        one(0170700),        "*lDd"},
  636. {"subl",    one(0110600),        one(0170700),        "Dd~s"},
  637. {"subqb",    one(0050400),        one(0170700),        "Qd%s"},
  638. {"subql",    one(0050600),        one(0170700),        "Qd%s"},
  639. {"subqw",    one(0050500),        one(0170700),        "Qd%s"},
  640. {"subw",    one(0050500),        one(0170700),        "Qd%s"},
  641. {"subw",    one(0002100),        one(0177700),        "#w$s"},
  642. {"subw",    one(0110100),        one(0170700),        "*wDd"},
  643. {"subw",    one(0110300),        one(0170700),        "*wAd"},    /* suba written as sub */
  644. {"subw",    one(0110500),        one(0170700),        "Dd~s"},
  645. {"subxb",    one(0110400),        one(0170770),        "DsDd"},    /* subxb Ds,    Dd */
  646. {"subxb",    one(0110410),        one(0170770),        "-s-d"},    /* subxb -(As),    -(Ad) */
  647. {"subxl",    one(0110600),        one(0170770),        "DsDd"},
  648. {"subxl",    one(0110610),        one(0170770),        "-s-d"},
  649. {"subxw",    one(0110500),        one(0170770),        "DsDd"},
  650. {"subxw",    one(0110510),        one(0170770),        "-s-d"},
  651.  
  652. {"swap",    one(0044100),        one(0177770),        "Ds"},
  653.     
  654. {"tas",        one(0045300),        one(0177700),        "$s"},
  655. {"trap",    one(0047100),        one(0177760),        "Ts"},
  656.  
  657. {"trapcc",    one(0052374),        one(0177777),        ""},
  658. {"trapcs",    one(0052774),        one(0177777),        ""},
  659. {"trapeq",    one(0053774),        one(0177777),        ""},
  660. {"trapf",    one(0050774),        one(0177777),        ""},
  661. {"trapge",    one(0056374),        one(0177777),        ""},
  662. {"trapgt",    one(0057374),        one(0177777),        ""},
  663. {"traphi",    one(0051374),        one(0177777),        ""},
  664. {"traple",    one(0057774),        one(0177777),        ""},
  665. {"trapls",    one(0051774),        one(0177777),        ""},
  666. {"traplt",    one(0056774),        one(0177777),        ""},
  667. {"trapmi",    one(0055774),        one(0177777),        ""},
  668. {"trapne",    one(0053374),        one(0177777),        ""},
  669. {"trappl",    one(0055374),        one(0177777),        ""},
  670. {"trapt",    one(0050374),        one(0177777),        ""},
  671. {"trapvc",    one(0054374),        one(0177777),        ""},
  672. {"trapvs",    one(0054774),        one(0177777),        ""},
  673.  
  674. {"trapcc.w",    one(0052372),        one(0177777),        ""},
  675. {"trapcs.w",    one(0052772),        one(0177777),        ""},
  676. {"trapeq.w",    one(0053772),        one(0177777),        ""},
  677. {"trapf.w",    one(0050772),        one(0177777),        ""},
  678. {"trapge.w",    one(0056372),        one(0177777),        ""},
  679. {"trapgt.w",    one(0057372),        one(0177777),        ""},
  680. {"traphi.w",    one(0051372),        one(0177777),        ""},
  681. {"traple.w",    one(0057772),        one(0177777),        ""},
  682. {"trapls.w",    one(0051772),        one(0177777),        ""},
  683. {"traplt.w",    one(0056772),        one(0177777),        ""},
  684. {"trapmi.w",    one(0055772),        one(0177777),        ""},
  685. {"trapne.w",    one(0053372),        one(0177777),        ""},
  686. {"trappl.w",    one(0055372),        one(0177777),        ""},
  687. {"trapt.w",    one(0050372),        one(0177777),        ""},
  688. {"trapvc.w",    one(0054372),        one(0177777),        ""},
  689. {"trapvs.w",    one(0054772),        one(0177777),        ""},
  690.  
  691. {"trapcc.l",    one(0052373),        one(0177777),        ""},
  692. {"trapcs.l",    one(0052773),        one(0177777),        ""},
  693. {"trapeq.l",    one(0053773),        one(0177777),        ""},
  694. {"trapf.l",    one(0050773),        one(0177777),        ""},
  695. {"trapge.l",    one(0056373),        one(0177777),        ""},
  696. {"trapgt.l",    one(0057373),        one(0177777),        ""},
  697. {"traphi.l",    one(0051373),        one(0177777),        ""},
  698. {"traple.l",    one(0057773),        one(0177777),        ""},
  699. {"trapls.l",    one(0051773),        one(0177777),        ""},
  700. {"traplt.l",    one(0056773),        one(0177777),        ""},
  701. {"trapmi.l",    one(0055773),        one(0177777),        ""},
  702. {"trapne.l",    one(0053373),        one(0177777),        ""},
  703. {"trappl.l",    one(0055373),        one(0177777),        ""},
  704. {"trapt.l",    one(0050373),        one(0177777),        ""},
  705. {"trapvc.l",    one(0054373),        one(0177777),        ""},
  706. {"trapvs.l",    one(0054773),        one(0177777),        ""},
  707.  
  708. {"trapv",    one(0047166),        one(0177777),        ""},
  709.  
  710. {"tstb",    one(0045000),        one(0177700),        ";b"},
  711. {"tstw",    one(0045100),        one(0177700),        "*w"},
  712. {"tstl",    one(0045200),        one(0177700),        "*l"},
  713.  
  714. {"unlk",    one(0047130),        one(0177770),        "As"},
  715. {"unpk",    one(0100600),        one(0170770),        "DsDd#w"},
  716. {"unpk",    one(0100610),        one(0170770),        "-s-d#w"},
  717.     /* JF floating pt stuff moved down here */
  718.  
  719. {"fabsb",    two(0xF000, 0x5818),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  720. {"fabsd",    two(0xF000, 0x5418),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  721. {"fabsl",    two(0xF000, 0x4018),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  722. {"fabsp",    two(0xF000, 0x4C18),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  723. {"fabss",    two(0xF000, 0x4418),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  724. {"fabsw",    two(0xF000, 0x5018),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  725. {"fabsx",    two(0xF000, 0x0018),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  726. {"fabsx",    two(0xF000, 0x4818),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  727. {"fabsx",    two(0xF000, 0x0018),    two(0xF1C0, 0xE07F),    "IiFt"},
  728.  
  729. {"facosb",    two(0xF000, 0x581C),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  730. {"facosd",    two(0xF000, 0x541C),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  731. {"facosl",    two(0xF000, 0x401C),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  732. {"facosp",    two(0xF000, 0x4C1C),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  733. {"facoss",    two(0xF000, 0x441C),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  734. {"facosw",    two(0xF000, 0x501C),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  735. {"facosx",    two(0xF000, 0x001C),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  736. {"facosx",    two(0xF000, 0x481C),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  737. {"facosx",    two(0xF000, 0x001C),    two(0xF1C0, 0xE07F),    "IiFt"},
  738.  
  739. {"faddb",    two(0xF000, 0x5822),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  740. {"faddd",    two(0xF000, 0x5422),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  741. {"faddl",    two(0xF000, 0x4022),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  742. {"faddp",    two(0xF000, 0x4C22),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  743. {"fadds",    two(0xF000, 0x4422),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  744. {"faddw",    two(0xF000, 0x5022),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  745. {"faddx",    two(0xF000, 0x0022),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  746. {"faddx",    two(0xF000, 0x4822),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  747. /* {"faddx",    two(0xF000, 0x0022),    two(0xF1C0, 0xE07F),    "IiFt"}, JF removed */
  748.  
  749. {"fasinb",    two(0xF000, 0x580C),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  750. {"fasind",    two(0xF000, 0x540C),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  751. {"fasinl",    two(0xF000, 0x400C),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  752. {"fasinp",    two(0xF000, 0x4C0C),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  753. {"fasins",    two(0xF000, 0x440C),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  754. {"fasinw",    two(0xF000, 0x500C),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  755. {"fasinx",    two(0xF000, 0x000C),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  756. {"fasinx",    two(0xF000, 0x480C),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  757. {"fasinx",    two(0xF000, 0x000C),    two(0xF1C0, 0xE07F),    "IiFt"},
  758.  
  759. {"fatanb",    two(0xF000, 0x580A),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  760. {"fatand",    two(0xF000, 0x540A),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  761. {"fatanl",    two(0xF000, 0x400A),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  762. {"fatanp",    two(0xF000, 0x4C0A),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  763. {"fatans",    two(0xF000, 0x440A),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  764. {"fatanw",    two(0xF000, 0x500A),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  765. {"fatanx",    two(0xF000, 0x000A),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  766. {"fatanx",    two(0xF000, 0x480A),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  767. {"fatanx",    two(0xF000, 0x000A),    two(0xF1C0, 0xE07F),    "IiFt"},
  768.  
  769. {"fatanhb",    two(0xF000, 0x580D),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  770. {"fatanhd",    two(0xF000, 0x540D),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  771. {"fatanhl",    two(0xF000, 0x400D),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  772. {"fatanhp",    two(0xF000, 0x4C0D),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  773. {"fatanhs",    two(0xF000, 0x440D),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  774. {"fatanhw",    two(0xF000, 0x500D),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  775. {"fatanhx",    two(0xF000, 0x000D),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  776. {"fatanhx",    two(0xF000, 0x480D),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  777. {"fatanhx",    two(0xF000, 0x000D),    two(0xF1C0, 0xE07F),    "IiFt"},
  778.  
  779. /* Fixed-size Float branches */
  780.  
  781. {"fbeq",    one(0xF081),        one(0xF1BF),        "IdBW"},
  782. {"fbf",        one(0xF080),        one(0xF1BF),        "IdBW"},
  783. {"fbge",    one(0xF093),        one(0xF1BF),        "IdBW"},
  784. {"fbgl",    one(0xF096),        one(0xF1BF),        "IdBW"},
  785. {"fbgle",    one(0xF097),        one(0xF1BF),        "IdBW"},
  786. {"fbgt",    one(0xF092),        one(0xF1BF),        "IdBW"},
  787. {"fble",    one(0xF095),        one(0xF1BF),        "IdBW"},
  788. {"fblt",    one(0xF094),        one(0xF1BF),        "IdBW"},
  789. {"fbne",    one(0xF08E),        one(0xF1BF),        "IdBW"},
  790. {"fbnge",    one(0xF09C),        one(0xF1BF),        "IdBW"},
  791. {"fbngl",    one(0xF099),        one(0xF1BF),        "IdBW"},
  792. {"fbngle",    one(0xF098),        one(0xF1BF),        "IdBW"},
  793. {"fbngt",    one(0xF09D),        one(0xF1BF),        "IdBW"},
  794. {"fbnle",    one(0xF09A),        one(0xF1BF),        "IdBW"},
  795. {"fbnlt",    one(0xF09B),        one(0xF1BF),        "IdBW"},
  796. {"fboge",    one(0xF083),        one(0xF1BF),        "IdBW"},
  797. {"fbogl",    one(0xF086),        one(0xF1BF),        "IdBW"},
  798. {"fbogt",    one(0xF082),        one(0xF1BF),        "IdBW"},
  799. {"fbole",    one(0xF085),        one(0xF1BF),        "IdBW"},
  800. {"fbolt",    one(0xF084),        one(0xF1BF),        "IdBW"},
  801. {"fbor",    one(0xF087),        one(0xF1BF),        "IdBW"},
  802. {"fbseq",    one(0xF091),        one(0xF1BF),        "IdBW"},
  803. {"fbsf",    one(0xF090),        one(0xF1BF),        "IdBW"},
  804. {"fbsne",    one(0xF09E),        one(0xF1BF),        "IdBW"},
  805. {"fbst",    one(0xF09F),        one(0xF1BF),        "IdBW"},
  806. {"fbt",        one(0xF08F),        one(0xF1BF),        "IdBW"},
  807. {"fbueq",    one(0xF089),        one(0xF1BF),        "IdBW"},
  808. {"fbuge",    one(0xF08B),        one(0xF1BF),        "IdBW"},
  809. {"fbugt",    one(0xF08A),        one(0xF1BF),        "IdBW"},
  810. {"fbule",    one(0xF08D),        one(0xF1BF),        "IdBW"},
  811. {"fbult",    one(0xF08C),        one(0xF1BF),        "IdBW"},
  812. {"fbun",    one(0xF088),        one(0xF1BF),        "IdBW"},
  813.  
  814. /* Float branches -- long (32-bit) displacements */
  815.  
  816. {"fbeql",    one(0xF081),        one(0xF1BF),        "IdBC"},
  817. {"fbfl",    one(0xF080),        one(0xF1BF),        "IdBC"},
  818. {"fbgel",    one(0xF093),        one(0xF1BF),        "IdBC"},
  819. {"fbgll",    one(0xF096),        one(0xF1BF),        "IdBC"},
  820. {"fbglel",    one(0xF097),        one(0xF1BF),        "IdBC"},
  821. {"fbgtl",    one(0xF092),        one(0xF1BF),        "IdBC"},
  822. {"fblel",    one(0xF095),        one(0xF1BF),        "IdBC"},
  823. {"fbltl",    one(0xF094),        one(0xF1BF),        "IdBC"},
  824. {"fbnel",    one(0xF08E),        one(0xF1BF),        "IdBC"},
  825. {"fbngel",    one(0xF09C),        one(0xF1BF),        "IdBC"},
  826. {"fbngll",    one(0xF099),        one(0xF1BF),        "IdBC"},
  827. {"fbnglel",    one(0xF098),        one(0xF1BF),        "IdBC"},
  828. {"fbngtl",    one(0xF09D),        one(0xF1BF),        "IdBC"},
  829. {"fbnlel",    one(0xF09A),        one(0xF1BF),        "IdBC"},
  830. {"fbnltl",    one(0xF09B),        one(0xF1BF),        "IdBC"},
  831. {"fbogel",    one(0xF083),        one(0xF1BF),        "IdBC"},
  832. {"fbogll",    one(0xF086),        one(0xF1BF),        "IdBC"},
  833. {"fbogtl",    one(0xF082),        one(0xF1BF),        "IdBC"},
  834. {"fbolel",    one(0xF085),        one(0xF1BF),        "IdBC"},
  835. {"fboltl",    one(0xF084),        one(0xF1BF),        "IdBC"},
  836. {"fborl",    one(0xF087),        one(0xF1BF),        "IdBC"},
  837. {"fbseql",    one(0xF091),        one(0xF1BF),        "IdBC"},
  838. {"fbsfl",    one(0xF090),        one(0xF1BF),        "IdBC"},
  839. {"fbsnel",    one(0xF09E),        one(0xF1BF),        "IdBC"},
  840. {"fbstl",    one(0xF09F),        one(0xF1BF),        "IdBC"},
  841. {"fbtl",    one(0xF08F),        one(0xF1BF),        "IdBC"},
  842. {"fbueql",    one(0xF089),        one(0xF1BF),        "IdBC"},
  843. {"fbugel",    one(0xF08B),        one(0xF1BF),        "IdBC"},
  844. {"fbugtl",    one(0xF08A),        one(0xF1BF),        "IdBC"},
  845. {"fbulel",    one(0xF08D),        one(0xF1BF),        "IdBC"},
  846. {"fbultl",    one(0xF08C),        one(0xF1BF),        "IdBC"},
  847. {"fbunl",    one(0xF088),        one(0xF1BF),        "IdBC"},
  848.  
  849. {"fcmpb",    two(0xF000, 0x5838),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  850. {"fcmpd",    two(0xF000, 0x5438),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  851. {"fcmpl",    two(0xF000, 0x4038),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  852. {"fcmpp",    two(0xF000, 0x4C38),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  853. {"fcmps",    two(0xF000, 0x4438),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  854. {"fcmpw",    two(0xF000, 0x5038),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  855. {"fcmpx",    two(0xF000, 0x0038),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  856. {"fcmpx",    two(0xF000, 0x4838),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  857. /* {"fcmpx",    two(0xF000, 0x0038),    two(0xF1C0, 0xE07F),    "IiFt"}, JF removed */
  858.  
  859. {"fcosb",    two(0xF000, 0x581D),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  860. {"fcosd",    two(0xF000, 0x541D),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  861. {"fcosl",    two(0xF000, 0x401D),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  862. {"fcosp",    two(0xF000, 0x4C1D),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  863. {"fcoss",    two(0xF000, 0x441D),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  864. {"fcosw",    two(0xF000, 0x501D),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  865. {"fcosx",    two(0xF000, 0x001D),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  866. {"fcosx",    two(0xF000, 0x481D),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  867. {"fcosx",    two(0xF000, 0x001D),    two(0xF1C0, 0xE07F),    "IiFt"},
  868.  
  869. {"fcoshb",    two(0xF000, 0x5819),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  870. {"fcoshd",    two(0xF000, 0x5419),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  871. {"fcoshl",    two(0xF000, 0x4019),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  872. {"fcoshp",    two(0xF000, 0x4C19),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  873. {"fcoshs",    two(0xF000, 0x4419),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  874. {"fcoshw",    two(0xF000, 0x5019),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  875. {"fcoshx",    two(0xF000, 0x0019),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  876. {"fcoshx",    two(0xF000, 0x4819),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  877. {"fcoshx",    two(0xF000, 0x0019),    two(0xF1C0, 0xE07F),    "IiFt"},
  878.  
  879. {"fdbeq",    two(0xF048, 0x0001),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  880. {"fdbf",    two(0xF048, 0x0000),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  881. {"fdbge",    two(0xF048, 0x0013),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  882. {"fdbgl",    two(0xF048, 0x0016),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  883. {"fdbgle",    two(0xF048, 0x0017),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  884. {"fdbgt",    two(0xF048, 0x0012),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  885. {"fdble",    two(0xF048, 0x0015),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  886. {"fdblt",    two(0xF048, 0x0014),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  887. {"fdbne",    two(0xF048, 0x000E),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  888. {"fdbnge",    two(0xF048, 0x001C),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  889. {"fdbngl",    two(0xF048, 0x0019),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  890. {"fdbngle",    two(0xF048, 0x0018),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  891. {"fdbngt",    two(0xF048, 0x001D),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  892. {"fdbnle",    two(0xF048, 0x001A),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  893. {"fdbnlt",    two(0xF048, 0x001B),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  894. {"fdboge",    two(0xF048, 0x0003),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  895. {"fdbogl",    two(0xF048, 0x0006),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  896. {"fdbogt",    two(0xF048, 0x0002),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  897. {"fdbole",    two(0xF048, 0x0005),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  898. {"fdbolt",    two(0xF048, 0x0004),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  899. {"fdbor",    two(0xF048, 0x0007),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  900. {"fdbseq",    two(0xF048, 0x0011),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  901. {"fdbsf",    two(0xF048, 0x0010),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  902. {"fdbsne",    two(0xF048, 0x001E),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  903. {"fdbst",    two(0xF048, 0x001F),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  904. {"fdbt",    two(0xF048, 0x000F),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  905. {"fdbueq",    two(0xF048, 0x0009),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  906. {"fdbuge",    two(0xF048, 0x000B),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  907. {"fdbugt",    two(0xF048, 0x000A),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  908. {"fdbule",    two(0xF048, 0x000D),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  909. {"fdbult",    two(0xF048, 0x000C),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  910. {"fdbun",    two(0xF048, 0x0008),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  911.  
  912. {"fdivb",    two(0xF000, 0x5820),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  913. {"fdivd",    two(0xF000, 0x5420),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  914. {"fdivl",    two(0xF000, 0x4020),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  915. {"fdivp",    two(0xF000, 0x4C20),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  916. {"fdivs",    two(0xF000, 0x4420),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  917. {"fdivw",    two(0xF000, 0x5020),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  918. {"fdivx",    two(0xF000, 0x0020),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  919. {"fdivx",    two(0xF000, 0x4820),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  920. /* {"fdivx",    two(0xF000, 0x0020),    two(0xF1C0, 0xE07F),    "IiFt"}, JF */
  921.  
  922. {"fetoxb",    two(0xF000, 0x5810),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  923. {"fetoxd",    two(0xF000, 0x5410),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  924. {"fetoxl",    two(0xF000, 0x4010),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  925. {"fetoxp",    two(0xF000, 0x4C10),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  926. {"fetoxs",    two(0xF000, 0x4410),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  927. {"fetoxw",    two(0xF000, 0x5010),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  928. {"fetoxx",    two(0xF000, 0x0010),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  929. {"fetoxx",    two(0xF000, 0x4810),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  930. {"fetoxx",    two(0xF000, 0x0010),    two(0xF1C0, 0xE07F),    "IiFt"},
  931.  
  932. {"fetoxm1b",    two(0xF000, 0x5808),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  933. {"fetoxm1d",    two(0xF000, 0x5408),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  934. {"fetoxm1l",    two(0xF000, 0x4008),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  935. {"fetoxm1p",    two(0xF000, 0x4C08),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  936. {"fetoxm1s",    two(0xF000, 0x4408),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  937. {"fetoxm1w",    two(0xF000, 0x5008),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  938. {"fetoxm1x",    two(0xF000, 0x0008),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  939. {"fetoxm1x",    two(0xF000, 0x4808),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  940. {"fetoxm1x",    two(0xF000, 0x0008),    two(0xF1C0, 0xE07F),    "IiFt"},
  941.  
  942. {"fgetexpb",    two(0xF000, 0x581E),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  943. {"fgetexpd",    two(0xF000, 0x541E),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  944. {"fgetexpl",    two(0xF000, 0x401E),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  945. {"fgetexpp",    two(0xF000, 0x4C1E),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  946. {"fgetexps",    two(0xF000, 0x441E),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  947. {"fgetexpw",    two(0xF000, 0x501E),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  948. {"fgetexpx",    two(0xF000, 0x001E),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  949. {"fgetexpx",    two(0xF000, 0x481E),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  950. {"fgetexpx",    two(0xF000, 0x001E),    two(0xF1C0, 0xE07F),    "IiFt"},
  951.  
  952. {"fgetmanb",    two(0xF000, 0x581F),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  953. {"fgetmand",    two(0xF000, 0x541F),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  954. {"fgetmanl",    two(0xF000, 0x401F),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  955. {"fgetmanp",    two(0xF000, 0x4C1F),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  956. {"fgetmans",    two(0xF000, 0x441F),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  957. {"fgetmanw",    two(0xF000, 0x501F),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  958. {"fgetmanx",    two(0xF000, 0x001F),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  959. {"fgetmanx",    two(0xF000, 0x481F),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  960. {"fgetmanx",    two(0xF000, 0x001F),    two(0xF1C0, 0xE07F),    "IiFt"},
  961.  
  962. {"fintb",    two(0xF000, 0x5801),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  963. {"fintd",    two(0xF000, 0x5401),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  964. {"fintl",    two(0xF000, 0x4001),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  965. {"fintp",    two(0xF000, 0x4C01),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  966. {"fints",    two(0xF000, 0x4401),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  967. {"fintw",    two(0xF000, 0x5001),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  968. {"fintx",    two(0xF000, 0x0001),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  969. {"fintx",    two(0xF000, 0x4801),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  970. {"fintx",    two(0xF000, 0x0001),    two(0xF1C0, 0xE07F),    "IiFt"},
  971.  
  972. {"fintrzb",    two(0xF000, 0x5803),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  973. {"fintrzd",    two(0xF000, 0x5403),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  974. {"fintrzl",    two(0xF000, 0x4003),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  975. {"fintrzp",    two(0xF000, 0x4C03),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  976. {"fintrzs",    two(0xF000, 0x4403),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  977. {"fintrzw",    two(0xF000, 0x5003),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  978. {"fintrzx",    two(0xF000, 0x0003),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  979. {"fintrzx",    two(0xF000, 0x4803),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  980. {"fintrzx",    two(0xF000, 0x0003),    two(0xF1C0, 0xE07F),    "IiFt"},
  981.  
  982. {"flog10b",    two(0xF000, 0x5815),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  983. {"flog10d",    two(0xF000, 0x5415),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  984. {"flog10l",    two(0xF000, 0x4015),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  985. {"flog10p",    two(0xF000, 0x4C15),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  986. {"flog10s",    two(0xF000, 0x4415),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  987. {"flog10w",    two(0xF000, 0x5015),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  988. {"flog10x",    two(0xF000, 0x0015),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  989. {"flog10x",    two(0xF000, 0x4815),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  990. {"flog10x",    two(0xF000, 0x0015),    two(0xF1C0, 0xE07F),    "IiFt"},
  991.  
  992. {"flog2b",    two(0xF000, 0x5816),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  993. {"flog2d",    two(0xF000, 0x5416),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  994. {"flog2l",    two(0xF000, 0x4016),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  995. {"flog2p",    two(0xF000, 0x4C16),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  996. {"flog2s",    two(0xF000, 0x4416),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  997. {"flog2w",    two(0xF000, 0x5016),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  998. {"flog2x",    two(0xF000, 0x0016),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  999. {"flog2x",    two(0xF000, 0x4816),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1000. {"flog2x",    two(0xF000, 0x0016),    two(0xF1C0, 0xE07F),    "IiFt"},
  1001.  
  1002. {"flognb",    two(0xF000, 0x5814),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1003. {"flognd",    two(0xF000, 0x5414),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1004. {"flognl",    two(0xF000, 0x4014),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1005. {"flognp",    two(0xF000, 0x4C14),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1006. {"flogns",    two(0xF000, 0x4414),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1007. {"flognw",    two(0xF000, 0x5014),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1008. {"flognx",    two(0xF000, 0x0014),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1009. {"flognx",    two(0xF000, 0x4814),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1010. {"flognx",    two(0xF000, 0x0014),    two(0xF1C0, 0xE07F),    "IiFt"},
  1011.  
  1012. {"flognp1b",    two(0xF000, 0x5806),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1013. {"flognp1d",    two(0xF000, 0x5406),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1014. {"flognp1l",    two(0xF000, 0x4006),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1015. {"flognp1p",    two(0xF000, 0x4C06),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1016. {"flognp1s",    two(0xF000, 0x4406),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1017. {"flognp1w",    two(0xF000, 0x5006),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1018. {"flognp1x",    two(0xF000, 0x0006),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1019. {"flognp1x",    two(0xF000, 0x4806),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1020. {"flognp1x",    two(0xF000, 0x0006),    two(0xF1C0, 0xE07F),    "IiFt"},
  1021.  
  1022. {"fmodb",    two(0xF000, 0x5821),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1023. {"fmodd",    two(0xF000, 0x5421),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1024. {"fmodl",    two(0xF000, 0x4021),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1025. {"fmodp",    two(0xF000, 0x4C21),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1026. {"fmods",    two(0xF000, 0x4421),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1027. {"fmodw",    two(0xF000, 0x5021),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1028. {"fmodx",    two(0xF000, 0x0021),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1029. {"fmodx",    two(0xF000, 0x4821),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1030. /* {"fmodx",    two(0xF000, 0x0021),    two(0xF1C0, 0xE07F),    "IiFt"}, JF */
  1031.  
  1032. {"fmoveb",    two(0xF000, 0x5800),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},        /* fmove from <ea> to fp<n> */
  1033. {"fmoveb",    two(0xF000, 0x7800),    two(0xF1C0, 0xFC7F),    "IiF7@b"},        /* fmove from fp<n> to <ea> */
  1034. {"fmoved",    two(0xF000, 0x5400),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},        /* fmove from <ea> to fp<n> */
  1035. {"fmoved",    two(0xF000, 0x7400),    two(0xF1C0, 0xFC7F),    "IiF7@F"},        /* fmove from fp<n> to <ea> */
  1036. {"fmovel",    two(0xF000, 0x4000),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},        /* fmove from <ea> to fp<n> */
  1037. {"fmovel",    two(0xF000, 0x6000),    two(0xF1C0, 0xFC7F),    "IiF7@l"},        /* fmove from fp<n> to <ea> */
  1038. /* Warning:  The addressing modes on these are probably not right:
  1039.    esp, Areg direct is only allowed for FPI */
  1040.         /* fmove.l from/to system control registers: */
  1041. {"fmovel",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Iis8@s"},
  1042. {"fmovel",    two(0xF000, 0x8000),    two(0xF1C0, 0xE3FF),    "Ii*ls8"},
  1043.  
  1044. /* {"fmovel",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Iis8@s"},
  1045. {"fmovel",    two(0xF000, 0x8000),    two(0xF2C0, 0xE3FF),    "Ii*ss8"}, */
  1046.  
  1047. {"fmovep",    two(0xF000, 0x4C00),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},        /* fmove from <ea> to fp<n> */
  1048. {"fmovep",    two(0xF000, 0x6C00),    two(0xF1C0, 0xFC00),    "IiF7@pkC"},        /* fmove.p with k-factors: */
  1049. {"fmovep",    two(0xF000, 0x7C00),    two(0xF1C0, 0xFC0F),    "IiF7@pDk"},        /* fmove.p with k-factors: */
  1050.  
  1051. {"fmoves",    two(0xF000, 0x4400),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},        /* fmove from <ea> to fp<n> */
  1052. {"fmoves",    two(0xF000, 0x6400),    two(0xF1C0, 0xFC7F),    "IiF7@f"},        /* fmove from fp<n> to <ea> */
  1053. {"fmovew",    two(0xF000, 0x5000),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},        /* fmove from <ea> to fp<n> */
  1054. {"fmovew",    two(0xF000, 0x7000),    two(0xF1C0, 0xFC7F),    "IiF7@w"},        /* fmove from fp<n> to <ea> */
  1055. {"fmovex",    two(0xF000, 0x0000),    two(0xF1C0, 0xE07F),    "IiF8F7"},        /* fmove from <ea> to fp<n> */
  1056. {"fmovex",    two(0xF000, 0x4800),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},        /* fmove from <ea> to fp<n> */
  1057. {"fmovex",    two(0xF000, 0x6800),    two(0xF1C0, 0xFC7F),    "IiF7@x"},        /* fmove from fp<n> to <ea> */
  1058. /* JF removed {"fmovex",    two(0xF000, 0x0000),    two(0xF1C0, 0xE07F),    "IiFt"},        / * fmove from <ea> to fp<n> */
  1059.  
  1060. {"fmovecrx",    two(0xF000, 0x5C00),    two(0xF1FF, 0xFC00),    "Ii#CF7"},        /* fmovecr.x #ccc,    FPn */
  1061. {"fmovecr",    two(0xF000, 0x5C00),    two(0xF1FF, 0xFC00),    "Ii#CF7"},
  1062.  
  1063. /* Other fmovemx.  */
  1064. {"fmovemx", two(0xF000, 0xF800), two(0xF1C0, 0xFF8F), "IiDk&s"}, /* fmovem.x: reg to control,    static and dynamic: */
  1065. {"fmovemx", two(0xF000, 0xD800), two(0xF1C0, 0xFF8F), "Ii&sDk"}, /* fmovem.x from control to reg, static and dynamic: */
  1066.  
  1067. {"fmovemx", two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Idl3&s"}, /* fmovem.x to control, static and dynamic: */
  1068. {"fmovemx", two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Id#3&s"}, /* fmovem.x to control, static and dynamic: */
  1069.  
  1070. {"fmovemx", two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&sl3"}, /* fmovem.x from control, static and dynamic: */
  1071. {"fmovemx", two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&s#3"}, /* fmovem.x from control, static and dynamic: */
  1072.  
  1073. {"fmovemx", two(0xF020, 0xE800), two(0xF1F8, 0xFF8F), "IiDk-s"}, /* fmovem.x: reg to autodecrement, static and dynamic */
  1074. {"fmovemx", two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "IdL3-s"}, /* fmovem.x to autodecrement, static and dynamic */
  1075. {"fmovemx", two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "Id#3-s"}, /* fmovem.x to autodecrement, static and dynamic */
  1076.  
  1077. {"fmovemx", two(0xF018, 0xD800), two(0xF1F8, 0xFF8F), "Ii+sDk"}, /* fmovem.x from autoincrement to reg, static and dynamic: */
  1078. {"fmovemx", two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+sl3"}, /* fmovem.x from autoincrement, static and dynamic: */
  1079. {"fmovemx", two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+s#3"}, /* fmovem.x from autoincrement, static and dynamic: */
  1080.  
  1081. {"fmoveml",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "IiL8@s"},
  1082. {"fmoveml",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Ii#8@s"},
  1083. {"fmoveml",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Iis8@s"},
  1084.  
  1085. {"fmoveml",    two(0xF000, 0x8000),    two(0xF2C0, 0xE3FF),    "Ii*sL8"},
  1086. {"fmoveml",    two(0xF000, 0x8000),    two(0xF1C0, 0xE3FF),    "Ii*s#8"},
  1087. {"fmoveml",    two(0xF000, 0x8000),    two(0xF1C0, 0xE3FF),    "Ii*ss8"},
  1088.  
  1089. /* fmovemx with register lists */
  1090. {"fmovem",    two(0xF020, 0xE000),    two(0xF1F8, 0xFF00),    "IdL3-s"},        /* fmovem.x to autodecrement,    static and dynamic */
  1091. {"fmovem",    two(0xF000, 0xF000),    two(0xF1C0, 0xFF00),    "Idl3&s"},        /* fmovem.x to control,    static and dynamic: */
  1092. {"fmovem",    two(0xF018, 0xD000),    two(0xF1F8, 0xFF00),    "Id+sl3"},        /* fmovem.x from autoincrement,    static and dynamic: */
  1093. {"fmovem",    two(0xF000, 0xD000),    two(0xF1C0, 0xFF00),    "Id&sl3"},        /* fmovem.x from control,    static and dynamic: */
  1094.  
  1095.     /* Alternate mnemonics for GNU as and GNU CC */
  1096. {"fmovem",    two(0xF020, 0xE000),    two(0xF1F8, 0xFF00),    "Id#3-s"},        /* fmovem.x to autodecrement,    static and dynamic */
  1097. {"fmovem",    two(0xF020, 0xE800),    two(0xF1F8, 0xFF8F),    "IiDk-s"},        /* fmovem.x to autodecrement,    static and dynamic */
  1098.  
  1099. {"fmovem",    two(0xF000, 0xF000),    two(0xF1C0, 0xFF00),    "Id#3&s"},        /* fmovem.x to control,    static and dynamic: */
  1100. {"fmovem",    two(0xF000, 0xF800),    two(0xF1C0, 0xFF8F),    "IiDk&s"},        /* fmovem.x to control,    static and dynamic: */
  1101.  
  1102. {"fmovem",    two(0xF018, 0xD000),    two(0xF1F8, 0xFF00),    "Id+s#3"},        /* fmovem.x from autoincrement,    static and dynamic: */
  1103. {"fmovem",    two(0xF018, 0xD800),    two(0xF1F8, 0xFF8F),    "Ii+sDk"},        /* fmovem.x from autoincrement,    static and dynamic: */
  1104.   
  1105. {"fmovem",    two(0xF000, 0xD000),    two(0xF1C0, 0xFF00),    "Id&s#3"},        /* fmovem.x from control,    static and dynamic: */
  1106. {"fmovem",    two(0xF000, 0xD800),    two(0xF1C0, 0xFF8F),    "Ii&sDk"},        /* fmovem.x from control,    static and dynamic: */
  1107.  
  1108. /* fmoveml a FP-control register */
  1109. {"fmovem",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Iis8@s"},
  1110. {"fmovem",    two(0xF000, 0x8000),    two(0xF1C0, 0xE3FF),    "Ii*ss8"},
  1111.  
  1112. /* fmoveml a FP-control reglist */
  1113. {"fmovem",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "IiL8@s"},
  1114. {"fmovem",    two(0xF000, 0x8000),    two(0xF2C0, 0xE3FF),    "Ii*sL8"},
  1115.  
  1116. {"fmulb",    two(0xF000, 0x5823),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1117. {"fmuld",    two(0xF000, 0x5423),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1118. {"fmull",    two(0xF000, 0x4023),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1119. {"fmulp",    two(0xF000, 0x4C23),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1120. {"fmuls",    two(0xF000, 0x4423),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1121. {"fmulw",    two(0xF000, 0x5023),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1122. {"fmulx",    two(0xF000, 0x0023),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1123. {"fmulx",    two(0xF000, 0x4823),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1124. /* {"fmulx",    two(0xF000, 0x0023),    two(0xF1C0, 0xE07F),    "IiFt"}, JF */
  1125.  
  1126. {"fnegb",    two(0xF000, 0x581A),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1127. {"fnegd",    two(0xF000, 0x541A),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1128. {"fnegl",    two(0xF000, 0x401A),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1129. {"fnegp",    two(0xF000, 0x4C1A),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1130. {"fnegs",    two(0xF000, 0x441A),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1131. {"fnegw",    two(0xF000, 0x501A),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1132. {"fnegx",    two(0xF000, 0x001A),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1133. {"fnegx",    two(0xF000, 0x481A),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1134. {"fnegx",    two(0xF000, 0x001A),    two(0xF1C0, 0xE07F),    "IiFt"},
  1135.  
  1136. {"fnop",    two(0xF280, 0x0000),    two(0xFFFF, 0xFFFF),    "Ii"},
  1137.  
  1138. {"fremb",    two(0xF000, 0x5825),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1139. {"fremd",    two(0xF000, 0x5425),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1140. {"freml",    two(0xF000, 0x4025),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1141. {"fremp",    two(0xF000, 0x4C25),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1142. {"frems",    two(0xF000, 0x4425),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1143. {"fremw",    two(0xF000, 0x5025),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1144. {"fremx",    two(0xF000, 0x0025),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1145. {"fremx",    two(0xF000, 0x4825),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1146. /* {"fremx",    two(0xF000, 0x0025),    two(0xF1C0, 0xE07F),    "IiFt"}, JF */
  1147.  
  1148. {"frestore",    one(0xF140),        one(0xF1C0),        "Id&s"},
  1149. {"frestore",    one(0xF158),        one(0xF1F8),        "Id+s"},
  1150. {"fsave",    one(0xF100),        one(0xF1C0),        "Id&s"},
  1151. {"fsave",    one(0xF120),        one(0xF1F8),        "Id-s"},
  1152.  
  1153. {"fsincosb",    two(0xF000, 0x5830),    two(0xF1C0, 0xFC78),    "Ii;bF3F7"},
  1154. {"fsincosd",    two(0xF000, 0x5430),    two(0xF1C0, 0xFC78),    "Ii;FF3F7"},
  1155. {"fsincosl",    two(0xF000, 0x4030),    two(0xF1C0, 0xFC78),    "Ii;lF3F7"},
  1156. {"fsincosp",    two(0xF000, 0x4C30),    two(0xF1C0, 0xFC78),    "Ii;pF3F7"},
  1157. {"fsincoss",    two(0xF000, 0x4430),    two(0xF1C0, 0xFC78),    "Ii;fF3F7"},
  1158. {"fsincosw",    two(0xF000, 0x5030),    two(0xF1C0, 0xFC78),    "Ii;wF3F7"},
  1159. {"fsincosx",    two(0xF000, 0x0030),    two(0xF1C0, 0xE078),    "IiF8F3F7"},
  1160. {"fsincosx",    two(0xF000, 0x4830),    two(0xF1C0, 0xFC78),    "Ii;xF3F7"},
  1161.  
  1162. {"fscaleb",    two(0xF000, 0x5826),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1163. {"fscaled",    two(0xF000, 0x5426),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1164. {"fscalel",    two(0xF000, 0x4026),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1165. {"fscalep",    two(0xF000, 0x4C26),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1166. {"fscales",    two(0xF000, 0x4426),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1167. {"fscalew",    two(0xF000, 0x5026),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1168. {"fscalex",    two(0xF000, 0x0026),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1169. {"fscalex",    two(0xF000, 0x4826),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1170. /* {"fscalex",    two(0xF000, 0x0026),    two(0xF1C0, 0xE07F),    "IiFt"}, JF */
  1171.  
  1172. /* $ is necessary to prevent the assembler from using PC-relative.
  1173.    If @ were used, "label: fseq label" could produce "ftrapeq",
  1174.    because "label" became "pc@label".  */
  1175. {"fseq",    two(0xF040, 0x0001),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1176. {"fsf",        two(0xF040, 0x0000),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1177. {"fsge",    two(0xF040, 0x0013),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1178. {"fsgl",    two(0xF040, 0x0016),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1179. {"fsgle",    two(0xF040, 0x0017),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1180. {"fsgt",    two(0xF040, 0x0012),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1181. {"fsle",    two(0xF040, 0x0015),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1182. {"fslt",    two(0xF040, 0x0014),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1183. {"fsne",    two(0xF040, 0x000E),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1184. {"fsnge",    two(0xF040, 0x001C),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1185. {"fsngl",    two(0xF040, 0x0019),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1186. {"fsngle",    two(0xF040, 0x0018),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1187. {"fsngt",    two(0xF040, 0x001D),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1188. {"fsnle",    two(0xF040, 0x001A),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1189. {"fsnlt",    two(0xF040, 0x001B),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1190. {"fsoge",    two(0xF040, 0x0003),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1191. {"fsogl",    two(0xF040, 0x0006),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1192. {"fsogt",    two(0xF040, 0x0002),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1193. {"fsole",    two(0xF040, 0x0005),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1194. {"fsolt",    two(0xF040, 0x0004),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1195. {"fsor",    two(0xF040, 0x0007),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1196. {"fsseq",    two(0xF040, 0x0011),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1197. {"fssf",    two(0xF040, 0x0010),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1198. {"fssne",    two(0xF040, 0x001E),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1199. {"fsst",    two(0xF040, 0x001F),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1200. {"fst",        two(0xF040, 0x000F),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1201. {"fsueq",    two(0xF040, 0x0009),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1202. {"fsuge",    two(0xF040, 0x000B),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1203. {"fsugt",    two(0xF040, 0x000A),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1204. {"fsule",    two(0xF040, 0x000D),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1205. {"fsult",    two(0xF040, 0x000C),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1206. {"fsun",    two(0xF040, 0x0008),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  1207.  
  1208. {"fsgldivb",    two(0xF000, 0x5824),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1209. {"fsgldivd",    two(0xF000, 0x5424),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1210. {"fsgldivl",    two(0xF000, 0x4024),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1211. {"fsgldivp",    two(0xF000, 0x4C24),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1212. {"fsgldivs",    two(0xF000, 0x4424),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1213. {"fsgldivw",    two(0xF000, 0x5024),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1214. {"fsgldivx",    two(0xF000, 0x0024),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1215. {"fsgldivx",    two(0xF000, 0x4824),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1216. {"fsgldivx",    two(0xF000, 0x0024),    two(0xF1C0, 0xE07F),    "IiFt"},
  1217.  
  1218. {"fsglmulb",    two(0xF000, 0x5827),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1219. {"fsglmuld",    two(0xF000, 0x5427),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1220. {"fsglmull",    two(0xF000, 0x4027),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1221. {"fsglmulp",    two(0xF000, 0x4C27),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1222. {"fsglmuls",    two(0xF000, 0x4427),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1223. {"fsglmulw",    two(0xF000, 0x5027),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1224. {"fsglmulx",    two(0xF000, 0x0027),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1225. {"fsglmulx",    two(0xF000, 0x4827),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1226. {"fsglmulx",    two(0xF000, 0x0027),    two(0xF1C0, 0xE07F),    "IiFt"},
  1227.  
  1228. {"fsinb",    two(0xF000, 0x580E),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1229. {"fsind",    two(0xF000, 0x540E),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1230. {"fsinl",    two(0xF000, 0x400E),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1231. {"fsinp",    two(0xF000, 0x4C0E),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1232. {"fsins",    two(0xF000, 0x440E),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1233. {"fsinw",    two(0xF000, 0x500E),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1234. {"fsinx",    two(0xF000, 0x000E),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1235. {"fsinx",    two(0xF000, 0x480E),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1236. {"fsinx",    two(0xF000, 0x000E),    two(0xF1C0, 0xE07F),    "IiFt"},
  1237.  
  1238. {"fsinhb",    two(0xF000, 0x5802),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1239. {"fsinhd",    two(0xF000, 0x5402),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1240. {"fsinhl",    two(0xF000, 0x4002),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1241. {"fsinhp",    two(0xF000, 0x4C02),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1242. {"fsinhs",    two(0xF000, 0x4402),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1243. {"fsinhw",    two(0xF000, 0x5002),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1244. {"fsinhx",    two(0xF000, 0x0002),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1245. {"fsinhx",    two(0xF000, 0x4802),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1246. {"fsinhx",    two(0xF000, 0x0002),    two(0xF1C0, 0xE07F),    "IiFt"},
  1247.  
  1248. {"fsqrtb",    two(0xF000, 0x5804),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1249. {"fsqrtd",    two(0xF000, 0x5404),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1250. {"fsqrtl",    two(0xF000, 0x4004),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1251. {"fsqrtp",    two(0xF000, 0x4C04),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1252. {"fsqrts",    two(0xF000, 0x4404),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1253. {"fsqrtw",    two(0xF000, 0x5004),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1254. {"fsqrtx",    two(0xF000, 0x0004),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1255. {"fsqrtx",    two(0xF000, 0x4804),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1256. {"fsqrtx",    two(0xF000, 0x0004),    two(0xF1C0, 0xE07F),    "IiFt"},
  1257.  
  1258. {"fsubb",    two(0xF000, 0x5828),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1259. {"fsubd",    two(0xF000, 0x5428),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1260. {"fsubl",    two(0xF000, 0x4028),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1261. {"fsubp",    two(0xF000, 0x4C28),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1262. {"fsubs",    two(0xF000, 0x4428),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1263. {"fsubw",    two(0xF000, 0x5028),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1264. {"fsubx",    two(0xF000, 0x0028),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1265. {"fsubx",    two(0xF000, 0x4828),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1266. {"fsubx",    two(0xF000, 0x0028),    two(0xF1C0, 0xE07F),    "IiFt"},
  1267.  
  1268. {"ftanb",    two(0xF000, 0x580F),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1269. {"ftand",    two(0xF000, 0x540F),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1270. {"ftanl",    two(0xF000, 0x400F),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1271. {"ftanp",    two(0xF000, 0x4C0F),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1272. {"ftans",    two(0xF000, 0x440F),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1273. {"ftanw",    two(0xF000, 0x500F),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1274. {"ftanx",    two(0xF000, 0x000F),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1275. {"ftanx",    two(0xF000, 0x480F),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1276. {"ftanx",    two(0xF000, 0x000F),    two(0xF1C0, 0xE07F),    "IiFt"},
  1277.  
  1278. {"ftanhb",    two(0xF000, 0x5809),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1279. {"ftanhd",    two(0xF000, 0x5409),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1280. {"ftanhl",    two(0xF000, 0x4009),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1281. {"ftanhp",    two(0xF000, 0x4C09),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1282. {"ftanhs",    two(0xF000, 0x4409),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1283. {"ftanhw",    two(0xF000, 0x5009),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1284. {"ftanhx",    two(0xF000, 0x0009),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1285. {"ftanhx",    two(0xF000, 0x4809),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1286. {"ftanhx",    two(0xF000, 0x0009),    two(0xF1C0, 0xE07F),    "IiFt"},
  1287.  
  1288. {"ftentoxb",    two(0xF000, 0x5812),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1289. {"ftentoxd",    two(0xF000, 0x5412),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1290. {"ftentoxl",    two(0xF000, 0x4012),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1291. {"ftentoxp",    two(0xF000, 0x4C12),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1292. {"ftentoxs",    two(0xF000, 0x4412),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1293. {"ftentoxw",    two(0xF000, 0x5012),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1294. {"ftentoxx",    two(0xF000, 0x0012),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1295. {"ftentoxx",    two(0xF000, 0x4812),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1296. {"ftentoxx",    two(0xF000, 0x0012),    two(0xF1C0, 0xE07F),    "IiFt"},
  1297.  
  1298. {"ftrapeq",    two(0xF07C, 0x0001),    two(0xF1FF, 0xFFFF),    "Ii"},
  1299. {"ftrapf",    two(0xF07C, 0x0000),    two(0xF1FF, 0xFFFF),    "Ii"},
  1300. {"ftrapge",    two(0xF07C, 0x0013),    two(0xF1FF, 0xFFFF),    "Ii"},
  1301. {"ftrapgl",    two(0xF07C, 0x0016),    two(0xF1FF, 0xFFFF),    "Ii"},
  1302. {"ftrapgle",    two(0xF07C, 0x0017),    two(0xF1FF, 0xFFFF),    "Ii"},
  1303. {"ftrapgt",    two(0xF07C, 0x0012),    two(0xF1FF, 0xFFFF),    "Ii"},
  1304. {"ftraple",    two(0xF07C, 0x0015),    two(0xF1FF, 0xFFFF),    "Ii"},
  1305. {"ftraplt",    two(0xF07C, 0x0014),    two(0xF1FF, 0xFFFF),    "Ii"},
  1306. {"ftrapne",    two(0xF07C, 0x000E),    two(0xF1FF, 0xFFFF),    "Ii"},
  1307. {"ftrapnge",    two(0xF07C, 0x001C),    two(0xF1FF, 0xFFFF),    "Ii"},
  1308. {"ftrapngl",    two(0xF07C, 0x0019),    two(0xF1FF, 0xFFFF),    "Ii"},
  1309. {"ftrapngle",    two(0xF07C, 0x0018),    two(0xF1FF, 0xFFFF),    "Ii"},
  1310. {"ftrapngt",    two(0xF07C, 0x001D),    two(0xF1FF, 0xFFFF),    "Ii"},
  1311. {"ftrapnle",    two(0xF07C, 0x001A),    two(0xF1FF, 0xFFFF),    "Ii"},
  1312. {"ftrapnlt",    two(0xF07C, 0x001B),    two(0xF1FF, 0xFFFF),    "Ii"},
  1313. {"ftrapoge",    two(0xF07C, 0x0003),    two(0xF1FF, 0xFFFF),    "Ii"},
  1314. {"ftrapogl",    two(0xF07C, 0x0006),    two(0xF1FF, 0xFFFF),    "Ii"},
  1315. {"ftrapogt",    two(0xF07C, 0x0002),    two(0xF1FF, 0xFFFF),    "Ii"},
  1316. {"ftrapole",    two(0xF07C, 0x0005),    two(0xF1FF, 0xFFFF),    "Ii"},
  1317. {"ftrapolt",    two(0xF07C, 0x0004),    two(0xF1FF, 0xFFFF),    "Ii"},
  1318. {"ftrapor",    two(0xF07C, 0x0007),    two(0xF1FF, 0xFFFF),    "Ii"},
  1319. {"ftrapseq",    two(0xF07C, 0x0011),    two(0xF1FF, 0xFFFF),    "Ii"},
  1320. {"ftrapsf",    two(0xF07C, 0x0010),    two(0xF1FF, 0xFFFF),    "Ii"},
  1321. {"ftrapsne",    two(0xF07C, 0x001E),    two(0xF1FF, 0xFFFF),    "Ii"},
  1322. {"ftrapst",    two(0xF07C, 0x001F),    two(0xF1FF, 0xFFFF),    "Ii"},
  1323. {"ftrapt",    two(0xF07C, 0x000F),    two(0xF1FF, 0xFFFF),    "Ii"},
  1324. {"ftrapueq",    two(0xF07C, 0x0009),    two(0xF1FF, 0xFFFF),    "Ii"},
  1325. {"ftrapuge",    two(0xF07C, 0x000B),    two(0xF1FF, 0xFFFF),    "Ii"},
  1326. {"ftrapugt",    two(0xF07C, 0x000A),    two(0xF1FF, 0xFFFF),    "Ii"},
  1327. {"ftrapule",    two(0xF07C, 0x000D),    two(0xF1FF, 0xFFFF),    "Ii"},
  1328. {"ftrapult",    two(0xF07C, 0x000C),    two(0xF1FF, 0xFFFF),    "Ii"},
  1329. {"ftrapun",    two(0xF07C, 0x0008),    two(0xF1FF, 0xFFFF),    "Ii"},
  1330.         
  1331. {"ftrapeqw",    two(0xF07A, 0x0001),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1332. {"ftrapfw",    two(0xF07A, 0x0000),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1333. {"ftrapgew",    two(0xF07A, 0x0013),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1334. {"ftrapglw",    two(0xF07A, 0x0016),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1335. {"ftrapglew",    two(0xF07A, 0x0017),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1336. {"ftrapgtw",    two(0xF07A, 0x0012),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1337. {"ftraplew",    two(0xF07A, 0x0015),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1338. {"ftrapltw",    two(0xF07A, 0x0014),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1339. {"ftrapnew",    two(0xF07A, 0x000E),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1340. {"ftrapngew",    two(0xF07A, 0x001C),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1341. {"ftrapnglw",    two(0xF07A, 0x0019),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1342. {"ftrapnglew",    two(0xF07A, 0x0018),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1343. {"ftrapngtw",    two(0xF07A, 0x001D),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1344. {"ftrapnlew",    two(0xF07A, 0x001A),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1345. {"ftrapnltw",    two(0xF07A, 0x001B),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1346. {"ftrapogew",    two(0xF07A, 0x0003),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1347. {"ftrapoglw",    two(0xF07A, 0x0006),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1348. {"ftrapogtw",    two(0xF07A, 0x0002),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1349. {"ftrapolew",    two(0xF07A, 0x0005),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1350. {"ftrapoltw",    two(0xF07A, 0x0004),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1351. {"ftraporw",    two(0xF07A, 0x0007),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1352. {"ftrapseqw",    two(0xF07A, 0x0011),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1353. {"ftrapsfw",    two(0xF07A, 0x0010),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1354. {"ftrapsnew",    two(0xF07A, 0x001E),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1355. {"ftrapstw",    two(0xF07A, 0x001F),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1356. {"ftraptw",    two(0xF07A, 0x000F),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1357. {"ftrapueqw",    two(0xF07A, 0x0009),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1358. {"ftrapugew",    two(0xF07A, 0x000B),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1359. {"ftrapugtw",    two(0xF07A, 0x000A),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1360. {"ftrapulew",    two(0xF07A, 0x000D),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1361. {"ftrapultw",    two(0xF07A, 0x000C),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1362. {"ftrapunw",    two(0xF07A, 0x0008),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1363.  
  1364. {"ftrapeql",    two(0xF07B, 0x0001),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1365. {"ftrapfl",    two(0xF07B, 0x0000),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1366. {"ftrapgel",    two(0xF07B, 0x0013),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1367. {"ftrapgll",    two(0xF07B, 0x0016),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1368. {"ftrapglel",    two(0xF07B, 0x0017),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1369. {"ftrapgtl",    two(0xF07B, 0x0012),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1370. {"ftraplel",    two(0xF07B, 0x0015),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1371. {"ftrapltl",    two(0xF07B, 0x0014),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1372. {"ftrapnel",    two(0xF07B, 0x000E),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1373. {"ftrapngel",    two(0xF07B, 0x001C),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1374. {"ftrapngll",    two(0xF07B, 0x0019),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1375. {"ftrapnglel",    two(0xF07B, 0x0018),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1376. {"ftrapngtl",    two(0xF07B, 0x001D),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1377. {"ftrapnlel",    two(0xF07B, 0x001A),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1378. {"ftrapnltl",    two(0xF07B, 0x001B),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1379. {"ftrapogel",    two(0xF07B, 0x0003),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1380. {"ftrapogll",    two(0xF07B, 0x0006),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1381. {"ftrapogtl",    two(0xF07B, 0x0002),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1382. {"ftrapolel",    two(0xF07B, 0x0005),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1383. {"ftrapoltl",    two(0xF07B, 0x0004),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1384. {"ftraporl",    two(0xF07B, 0x0007),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1385. {"ftrapseql",    two(0xF07B, 0x0011),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1386. {"ftrapsfl",    two(0xF07B, 0x0010),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1387. {"ftrapsnel",    two(0xF07B, 0x001E),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1388. {"ftrapstl",    two(0xF07B, 0x001F),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1389. {"ftraptl",    two(0xF07B, 0x000F),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1390. {"ftrapueql",    two(0xF07B, 0x0009),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1391. {"ftrapugel",    two(0xF07B, 0x000B),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1392. {"ftrapugtl",    two(0xF07B, 0x000A),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1393. {"ftrapulel",    two(0xF07B, 0x000D),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1394. {"ftrapultl",    two(0xF07B, 0x000C),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1395. {"ftrapunl",    two(0xF07B, 0x0008),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1396.  
  1397. {"ftstb",    two(0xF000, 0x583A),    two(0xF1C0, 0xFC7F),    "Ii;b"},
  1398. {"ftstd",    two(0xF000, 0x543A),    two(0xF1C0, 0xFC7F),    "Ii;F"},
  1399. {"ftstl",    two(0xF000, 0x403A),    two(0xF1C0, 0xFC7F),    "Ii;l"},
  1400. {"ftstp",    two(0xF000, 0x4C3A),    two(0xF1C0, 0xFC7F),    "Ii;p"},
  1401. {"ftsts",    two(0xF000, 0x443A),    two(0xF1C0, 0xFC7F),    "Ii;f"},
  1402. {"ftstw",    two(0xF000, 0x503A),    two(0xF1C0, 0xFC7F),    "Ii;w"},
  1403. {"ftstx",    two(0xF000, 0x003A),    two(0xF1C0, 0xE07F),    "IiF8"},
  1404. {"ftstx",    two(0xF000, 0x483A),    two(0xF1C0, 0xFC7F),    "Ii;x"},
  1405.  
  1406. {"ftwotoxb",    two(0xF000, 0x5811),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1407. {"ftwotoxd",    two(0xF000, 0x5411),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1408. {"ftwotoxl",    two(0xF000, 0x4011),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1409. {"ftwotoxp",    two(0xF000, 0x4C11),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1410. {"ftwotoxs",    two(0xF000, 0x4411),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1411. {"ftwotoxw",    two(0xF000, 0x5011),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1412. {"ftwotoxx",    two(0xF000, 0x0011),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1413. {"ftwotoxx",    two(0xF000, 0x4811),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1414. {"ftwotoxx",    two(0xF000, 0x0011),    two(0xF1C0, 0xE07F),    "IiFt"},
  1415.  
  1416. /* Variable-sized float branches */
  1417.  
  1418. {"fjeq",    one(0xF081),        one(0xF1FF),        "IdBc"},
  1419. {"fjf",        one(0xF080),        one(0xF1FF),        "IdBc"},
  1420. {"fjge",    one(0xF093),        one(0xF1FF),        "IdBc"},
  1421. {"fjgl",    one(0xF096),        one(0xF1FF),        "IdBc"},
  1422. {"fjgle",    one(0xF097),        one(0xF1FF),        "IdBc"},
  1423. {"fjgt",    one(0xF092),        one(0xF1FF),        "IdBc"},
  1424. {"fjle",    one(0xF095),        one(0xF1FF),        "IdBc"},
  1425. {"fjlt",    one(0xF094),        one(0xF1FF),        "IdBc"},
  1426. {"fjne",    one(0xF08E),        one(0xF1FF),        "IdBc"},
  1427. {"fjnge",    one(0xF09C),        one(0xF1FF),        "IdBc"},
  1428. {"fjngl",    one(0xF099),        one(0xF1FF),        "IdBc"},
  1429. {"fjngle",    one(0xF098),        one(0xF1FF),        "IdBc"},
  1430. {"fjngt",    one(0xF09D),        one(0xF1FF),        "IdBc"},
  1431. {"fjnle",    one(0xF09A),        one(0xF1FF),        "IdBc"},
  1432. {"fjnlt",    one(0xF09B),        one(0xF1FF),        "IdBc"},
  1433. {"fjoge",    one(0xF083),        one(0xF1FF),        "IdBc"},
  1434. {"fjogl",    one(0xF086),        one(0xF1FF),        "IdBc"},
  1435. {"fjogt",    one(0xF082),        one(0xF1FF),        "IdBc"},
  1436. {"fjole",    one(0xF085),        one(0xF1FF),        "IdBc"},
  1437. {"fjolt",    one(0xF084),        one(0xF1FF),        "IdBc"},
  1438. {"fjor",    one(0xF087),        one(0xF1FF),        "IdBc"},
  1439. {"fjseq",    one(0xF091),        one(0xF1FF),        "IdBc"},
  1440. {"fjsf",    one(0xF090),        one(0xF1FF),        "IdBc"},
  1441. {"fjsne",    one(0xF09E),        one(0xF1FF),        "IdBc"},
  1442. {"fjst",    one(0xF09F),        one(0xF1FF),        "IdBc"},
  1443. {"fjt",        one(0xF08F),        one(0xF1FF),        "IdBc"},
  1444. {"fjueq",    one(0xF089),        one(0xF1FF),        "IdBc"},
  1445. {"fjuge",    one(0xF08B),        one(0xF1FF),        "IdBc"},
  1446. {"fjugt",    one(0xF08A),        one(0xF1FF),        "IdBc"},
  1447. {"fjule",    one(0xF08D),        one(0xF1FF),        "IdBc"},
  1448. {"fjult",    one(0xF08C),        one(0xF1FF),        "IdBc"},
  1449. {"fjun",    one(0xF088),        one(0xF1FF),        "IdBc"},
  1450.  
  1451. /* Variable-sized branches */
  1452.  
  1453. {"jbsr",    one(0060400),        one(0177400),        "Bg"},
  1454. {"jbsr",    one(0047200),        one(0177700),        "!s"},
  1455. {"jra",        one(0060000),        one(0177400),        "Bg"},
  1456. {"jra",        one(0047300),        one(0177700),        "!s"},
  1457.   
  1458. {"jhi",        one(0061000),        one(0177400),        "Bg"},
  1459. {"jls",        one(0061400),        one(0177400),        "Bg"},
  1460. {"jcc",        one(0062000),        one(0177400),        "Bg"},
  1461. {"jcs",        one(0062400),        one(0177400),        "Bg"},
  1462. {"jne",        one(0063000),        one(0177400),        "Bg"},
  1463. {"jeq",        one(0063400),        one(0177400),        "Bg"},
  1464. {"jvc",        one(0064000),        one(0177400),        "Bg"},
  1465. {"jvs",        one(0064400),        one(0177400),        "Bg"},
  1466. {"jpl",        one(0065000),        one(0177400),        "Bg"},
  1467. {"jmi",        one(0065400),        one(0177400),        "Bg"},
  1468. {"jge",        one(0066000),        one(0177400),        "Bg"},
  1469. {"jlt",        one(0066400),        one(0177400),        "Bg"},
  1470. {"jgt",        one(0067000),        one(0177400),        "Bg"},
  1471. {"jle",        one(0067400),        one(0177400),        "Bg"},
  1472.  
  1473. {"movql",    one(0070000),        one(0170400),        "MsDd"},
  1474. {"moveql",    one(0070000),        one(0170400),        "MsDd"},
  1475. {"moval",    one(0020100),        one(0170700),        "*lAd"},
  1476. {"movaw",    one(0030100),        one(0170700),        "*wAd"},
  1477. {"movb",    one(0010000),        one(0170000),        ";b$d"},    /* mov */
  1478. {"movl",    one(0070000),        one(0170400),        "MsDd"},    /* movq written as mov */
  1479. {"movl",    one(0020000),        one(0170000),        "*l$d"},
  1480. {"movl",    one(0020100),        one(0170700),        "*lAd"},
  1481. {"movl",    one(0047140),        one(0177770),        "AsUd"},    /* mov to USP */
  1482. {"movl",    one(0047150),        one(0177770),        "UdAs"},    /* mov from USP */
  1483. {"movc",    one(0047173),        one(0177777),        "R1Jj"},
  1484. {"movc",    one(0047173),        one(0177777),        "R1#j"},
  1485. {"movc",    one(0047172),        one(0177777),        "JjR1"},
  1486. {"movc",    one(0047172),        one(0177777),        "#jR1"},
  1487. {"movml",    one(0044300),        one(0177700),        "#w&s"},    /* movm reg to mem. */
  1488. {"movml",    one(0044340),        one(0177770),        "#w-s"},    /* movm reg to autodecrement. */
  1489. {"movml",    one(0046300),        one(0177700),        "!s#w"},    /* movm mem to reg. */
  1490. {"movml",    one(0046330),        one(0177770),        "+s#w"},    /* movm autoinc to reg. */
  1491. {"movml",    one(0044300),        one(0177700),        "Lw&s"},    /* movm reg to mem. */
  1492. {"movml",    one(0044340),        one(0177770),        "lw-s"},    /* movm reg to autodecrement. */
  1493. {"movml",    one(0046300),        one(0177700),        "!sLw"},    /* movm mem to reg. */
  1494. {"movml",    one(0046330),        one(0177770),        "+sLw"},    /* movm autoinc to reg. */
  1495. {"movmw",    one(0044200),        one(0177700),        "#w&s"},    /* movm reg to mem. */
  1496. {"movmw",    one(0044240),        one(0177770),        "#w-s"},    /* movm reg to autodecrement. */
  1497. {"movmw",    one(0046200),        one(0177700),        "!s#w"},    /* movm mem to reg. */
  1498. {"movmw",    one(0046230),        one(0177770),        "+s#w"},    /* movm autoinc to reg. */
  1499. {"movmw",    one(0044200),        one(0177700),        "Lw&s"},    /* movm reg to mem. */
  1500. {"movmw",    one(0044240),        one(0177770),        "lw-s"},    /* movm reg to autodecrement. */
  1501. {"movmw",    one(0046200),        one(0177700),        "!sLw"},    /* movm mem to reg. */
  1502. {"movmw",    one(0046230),        one(0177770),        "+sLw"},    /* movm autoinc to reg. */
  1503. {"movpl",    one(0000510),        one(0170770),        "dsDd"},    /* memory to register */
  1504. {"movpl",    one(0000710),        one(0170770),        "Ddds"},    /* register to memory */
  1505. {"movpw",    one(0000410),        one(0170770),        "dsDd"},    /* memory to register */
  1506. {"movpw",    one(0000610),        one(0170770),        "Ddds"},    /* register to memory */
  1507. {"movq",    one(0070000),        one(0170400),        "MsDd"},
  1508. {"movw",    one(0030000),        one(0170000),        "*w$d"},
  1509. {"movw",    one(0030100),        one(0170700),        "*wAd"},    /* mova,    written as mov */
  1510. {"movw",    one(0040300),        one(0177700),        "Ss$s"},    /* Move from sr */
  1511. {"movw",    one(0041300),        one(0177700),        "Cs$s"},    /* Move from ccr */
  1512. {"movw",    one(0042300),        one(0177700),        ";wCd"},    /* mov to ccr */
  1513. {"movw",    one(0043300),        one(0177700),        ";wSd"},    /* mov to sr */
  1514.  
  1515. {"movsb",    two(0007000, 0),    two(0177700, 07777),    "~sR1"},
  1516. {"movsb",    two(0007000, 04000),    two(0177700, 07777),    "R1~s"},
  1517. {"movsl",    two(0007200, 0),    two(0177700, 07777),    "~sR1"},
  1518. {"movsl",    two(0007200, 04000),    two(0177700, 07777),    "R1~s"},
  1519. {"movsw",    two(0007100, 0),    two(0177700, 07777),    "~sR1"},
  1520. {"movsw",    two(0007100, 04000),    two(0177700, 07777),    "R1~s"},
  1521.  
  1522. #ifdef m68851
  1523.  /* name */    /* opcode */        /* match */        /* args */
  1524.  
  1525. {"pbac",    one(0xf0c7),        one(0xffbf),        "Bc"},
  1526. {"pbacw",    one(0xf087),        one(0xffbf),        "Bc"},
  1527. {"pbas",    one(0xf0c6),        one(0xffbf),        "Bc"},
  1528. {"pbasw",    one(0xf086),        one(0xffbf),        "Bc"},
  1529. {"pbbc",    one(0xf0c1),        one(0xffbf),        "Bc"},
  1530. {"pbbcw",    one(0xf081),        one(0xffbf),        "Bc"},
  1531. {"pbbs",    one(0xf0c0),        one(0xffbf),        "Bc"},
  1532. {"pbbsw",    one(0xf080),        one(0xffbf),        "Bc"},
  1533. {"pbcc",    one(0xf0cf),        one(0xffbf),        "Bc"},
  1534. {"pbccw",    one(0xf08f),        one(0xffbf),        "Bc"},
  1535. {"pbcs",    one(0xf0ce),        one(0xffbf),        "Bc"},
  1536. {"pbcsw",    one(0xf08e),        one(0xffbf),        "Bc"},
  1537. {"pbgc",    one(0xf0cd),        one(0xffbf),        "Bc"},
  1538. {"pbgcw",    one(0xf08d),        one(0xffbf),        "Bc"},
  1539. {"pbgs",    one(0xf0cc),        one(0xffbf),        "Bc"},
  1540. {"pbgsw",    one(0xf08c),        one(0xffbf),        "Bc"},
  1541. {"pbic",    one(0xf0cb),        one(0xffbf),        "Bc"},
  1542. {"pbicw",    one(0xf08b),        one(0xffbf),        "Bc"},
  1543. {"pbis",    one(0xf0ca),        one(0xffbf),        "Bc"},
  1544. {"pbisw",    one(0xf08a),        one(0xffbf),        "Bc"},
  1545. {"pblc",    one(0xf0c3),        one(0xffbf),        "Bc"},
  1546. {"pblcw",    one(0xf083),        one(0xffbf),        "Bc"},
  1547. {"pbls",    one(0xf0c2),        one(0xffbf),        "Bc"},
  1548. {"pblsw",    one(0xf082),        one(0xffbf),        "Bc"},
  1549. {"pbsc",    one(0xf0c5),        one(0xffbf),        "Bc"},
  1550. {"pbscw",    one(0xf085),        one(0xffbf),        "Bc"},
  1551. {"pbss",    one(0xf0c4),        one(0xffbf),        "Bc"},
  1552. {"pbssw",    one(0xf084),        one(0xffbf),        "Bc"},
  1553. {"pbwc",    one(0xf0c9),        one(0xffbf),        "Bc"},
  1554. {"pbwcw",    one(0xf089),        one(0xffbf),        "Bc"},
  1555. {"pbws",    one(0xf0c8),        one(0xffbf),        "Bc"},
  1556. {"pbwsw",    one(0xf088),        one(0xffbf),        "Bc"},
  1557.  
  1558.  
  1559. {"pdbac",    two(0xf048, 0x0007),    two(0xfff8, 0xffff),    "DsBw"},
  1560. {"pdbas",    two(0xf048, 0x0006),    two(0xfff8, 0xffff),    "DsBw"},
  1561. {"pdbbc",    two(0xf048, 0x0001),    two(0xfff8, 0xffff),    "DsBw"},
  1562. {"pdbbs",    two(0xf048, 0x0000),    two(0xfff8, 0xffff),    "DsBw"},
  1563. {"pdbcc",    two(0xf048, 0x000f),    two(0xfff8, 0xffff),    "DsBw"},
  1564. {"pdbcs",    two(0xf048, 0x000e),    two(0xfff8, 0xffff),    "DsBw"},
  1565. {"pdbgc",    two(0xf048, 0x000d),    two(0xfff8, 0xffff),    "DsBw"},
  1566. {"pdbgs",    two(0xf048, 0x000c),    two(0xfff8, 0xffff),    "DsBw"},
  1567. {"pdbic",    two(0xf048, 0x000b),    two(0xfff8, 0xffff),    "DsBw"},
  1568. {"pdbis",    two(0xf048, 0x000a),    two(0xfff8, 0xffff),    "DsBw"},
  1569. {"pdblc",    two(0xf048, 0x0003),    two(0xfff8, 0xffff),    "DsBw"},
  1570. {"pdbls",    two(0xf048, 0x0002),    two(0xfff8, 0xffff),    "DsBw"},
  1571. {"pdbsc",    two(0xf048, 0x0005),    two(0xfff8, 0xffff),    "DsBw"},
  1572. {"pdbss",    two(0xf048, 0x0004),    two(0xfff8, 0xffff),    "DsBw"},
  1573. {"pdbwc",    two(0xf048, 0x0009),    two(0xfff8, 0xffff),    "DsBw"},
  1574. {"pdbws",    two(0xf048, 0x0008),    two(0xfff8, 0xffff),    "DsBw"},
  1575.  
  1576. {"pflusha",    two(0xf000, 0x2400),    two(0xffff, 0xffff),    "" },
  1577.  
  1578. {"pflush",    two(0xf000, 0x3010),    two(0xffc0, 0xfe10),    "T3T9" },
  1579. {"pflush",    two(0xf000, 0x3810),    two(0xffc0, 0xfe10),    "T3T9&s" },
  1580. {"pflush",    two(0xf000, 0x3008),    two(0xffc0, 0xfe18),    "D3T9" },
  1581. {"pflush",    two(0xf000, 0x3808),    two(0xffc0, 0xfe18),    "D3T9&s" },
  1582. {"pflush",    two(0xf000, 0x3000),    two(0xffc0, 0xfe1e),    "f3T9" },
  1583. {"pflush",    two(0xf000, 0x3800),    two(0xffc0, 0xfe1e),    "f3T9&s" },
  1584.  
  1585. {"pflushs",    two(0xf000, 0x3410),    two(0xfff8, 0xfe10),    "T3T9" },
  1586. {"pflushs",    two(0xf000, 0x3c10),    two(0xfff8, 0xfe00),    "T3T9&s" },
  1587. {"pflushs",    two(0xf000, 0x3408),    two(0xfff8, 0xfe18),    "D3T9" },
  1588. {"pflushs",    two(0xf000, 0x3c08),    two(0xfff8, 0xfe18),    "D3T9&s" },
  1589. {"pflushs",    two(0xf000, 0x3400),    two(0xfff8, 0xfe1e),    "f3T9" },
  1590. {"pflushs",    two(0xf000, 0x3c00),    two(0xfff8, 0xfe1e),    "f3T9&s"},
  1591.  
  1592. {"pflushr",    two(0xf000, 0xa000),    two(0xffc0, 0xffff),    "|s" },
  1593.  
  1594. {"ploadr",    two(0xf000, 0x2210),    two(0xffc0, 0xfff0),    "T3&s" },
  1595. {"ploadr",    two(0xf000, 0x2208),    two(0xffc0, 0xfff8),    "D3&s" },
  1596. {"ploadr",    two(0xf000, 0x2200),    two(0xffc0, 0xfffe),    "f3&s" },
  1597. {"ploadw",    two(0xf000, 0x2010),    two(0xffc0, 0xfff0),    "T3&s" },
  1598. {"ploadw",    two(0xf000, 0x2008),    two(0xffc0, 0xfff8),    "D3&s" },
  1599. {"ploadw",    two(0xf000, 0x2000),    two(0xffc0, 0xfffe),    "f3&s" },
  1600.  
  1601. /* TC, CRP, DRP, SRP, CAL, VAL, SCC, AC */
  1602. {"pmove",    two(0xf000, 0x4000),    two(0xffc0, 0xe3ff),    "*sP8" },
  1603. {"pmove",    two(0xf000, 0x4200),    two(0xffc0, 0xe3ff),    "P8%s" },
  1604. {"pmove",    two(0xf000, 0x4000),    two(0xffc0, 0xe3ff),    "|sW8" },
  1605. {"pmove",    two(0xf000, 0x4200),    two(0xffc0, 0xe3ff),    "W8~s" },
  1606.  
  1607. /* BADx, BACx */
  1608. {"pmove",    two(0xf000, 0x6200),    two(0xffc0, 0xe3e3),    "*sX3" },
  1609. {"pmove",    two(0xf000, 0x6000),    two(0xffc0, 0xe3e3),    "X3%s" },
  1610.  
  1611. /* PSR, PCSR */
  1612. /* {"pmove",    two(0xf000, 0x6100),    two(oxffc0, oxffff),    "*sZ8" }, */
  1613. {"pmove",    two(0xf000, 0x6000),    two(0xffc0, 0xffff),    "*sY8" },
  1614. {"pmove",    two(0xf000, 0x6200),    two(0xffc0, 0xffff),    "Y8%s" },
  1615. {"pmove",    two(0xf000, 0x6600),    two(0xffc0, 0xffff),    "Z8%s" },
  1616.  
  1617. {"prestore",    one(0xf140),        one(0xffc0),        "&s"},
  1618. {"prestore",    one(0xf158),        one(0xfff8),        "+s"},
  1619. {"psave",    one(0xf100),        one(0xffc0),        "&s"},
  1620. {"psave",    one(0xf100),        one(0xffc0),        "+s"},
  1621.  
  1622. {"psac",    two(0xf040, 0x0007),    two(0xffc0, 0xffff),    "@s"},
  1623. {"psas",    two(0xf040, 0x0006),    two(0xffc0, 0xffff),    "@s"},
  1624. {"psbc",    two(0xf040, 0x0001),    two(0xffc0, 0xffff),    "@s"},
  1625. {"psbs",    two(0xf040, 0x0000),    two(0xffc0, 0xffff),    "@s"},
  1626. {"pscc",    two(0xf040, 0x000f),    two(0xffc0, 0xffff),    "@s"},
  1627. {"pscs",    two(0xf040, 0x000e),    two(0xffc0, 0xffff),    "@s"},
  1628. {"psgc",    two(0xf040, 0x000d),    two(0xffc0, 0xffff),    "@s"},
  1629. {"psgs",    two(0xf040, 0x000c),    two(0xffc0, 0xffff),    "@s"},
  1630. {"psic",    two(0xf040, 0x000b),    two(0xffc0, 0xffff),    "@s"},
  1631. {"psis",    two(0xf040, 0x000a),    two(0xffc0, 0xffff),    "@s"},
  1632. {"pslc",    two(0xf040, 0x0003),    two(0xffc0, 0xffff),    "@s"},
  1633. {"psls",    two(0xf040, 0x0002),    two(0xffc0, 0xffff),    "@s"},
  1634. {"pssc",    two(0xf040, 0x0005),    two(0xffc0, 0xffff),    "@s"},
  1635. {"psss",    two(0xf040, 0x0004),    two(0xffc0, 0xffff),    "@s"},
  1636. {"pswc",    two(0xf040, 0x0009),    two(0xffc0, 0xffff),    "@s"},
  1637. {"psws",    two(0xf040, 0x0008),    two(0xffc0, 0xffff),    "@s"},
  1638.  
  1639. {"ptestr",    two(0xf000, 0x8210),    two(0xffc0, 0xe3f0),    "T3&sQ8" },
  1640. {"ptestr",    two(0xf000, 0x8310),    two(0xffc0, 0xe310),    "T3&sQ8A9" },
  1641. {"ptestr",    two(0xf000, 0x8208),    two(0xffc0, 0xe3f8),    "D3&sQ8" },
  1642. {"ptestr",    two(0xf000, 0x8308),    two(0xffc0, 0xe318),    "D3&sQ8A9" },
  1643. {"ptestr",    two(0xf000, 0x8200),    two(0xffc0, 0xe3fe),    "f3&sQ8" },
  1644. {"ptestr",    two(0xf000, 0x8300),    two(0xffc0, 0xe31e),    "f3&sQ8A9" },
  1645.  
  1646. {"ptestw",    two(0xf000, 0x8010),    two(0xffc0, 0xe3f0),    "T3&sQ8" },
  1647. {"ptestw",    two(0xf000, 0x8110),    two(0xffc0, 0xe310),    "T3&sQ8A9" },
  1648. {"ptestw",    two(0xf000, 0x8008),    two(0xffc0, 0xe3f8),    "D3&sQ8" },
  1649. {"ptestw",    two(0xf000, 0x8108),    two(0xffc0, 0xe318),    "D3&sQ8A9" },
  1650. {"ptestw",    two(0xf000, 0x8000),    two(0xffc0, 0xe3fe),    "f3&sQ8" },
  1651. {"ptestw",    two(0xf000, 0x8100),    two(0xffc0, 0xe31e),    "f3&sQ8A9" },
  1652.  
  1653. {"ptrapacw",    two(0xf07a, 0x0007),    two(0xffff, 0xffff),    "#w"},
  1654. {"ptrapacl",    two(0xf07b, 0x0007),    two(0xffff, 0xffff),    "#l"},
  1655. {"ptrapac",    two(0xf07c, 0x0007),    two(0xffff, 0xffff),    ""},
  1656.  
  1657. {"ptrapasw",    two(0xf07a, 0x0006),    two(0xffff, 0xffff),    "#w"},
  1658. {"ptrapasl",    two(0xf07b, 0x0006),    two(0xffff, 0xffff),    "#l"},
  1659. {"ptrapas",    two(0xf07c, 0x0006),    two(0xffff, 0xffff),    ""},
  1660.  
  1661. {"ptrapbcw",    two(0xf07a, 0x0001),    two(0xffff, 0xffff),    "#w"},
  1662. {"ptrapbcl",    two(0xf07b, 0x0001),    two(0xffff, 0xffff),    "#l"},
  1663. {"ptrapbc",    two(0xf07c, 0x0001),    two(0xffff, 0xffff),    ""},
  1664.  
  1665. {"ptrapbsw",    two(0xf07a, 0x0000),    two(0xffff, 0xffff),    "#w"},
  1666. {"ptrapbsl",    two(0xf07b, 0x0000),    two(0xffff, 0xffff),    "#l"},
  1667. {"ptrapbs",    two(0xf07c, 0x0000),    two(0xffff, 0xffff),    ""},
  1668.  
  1669. {"ptrapccw",    two(0xf07a, 0x000f),    two(0xffff, 0xffff),    "#w"},
  1670. {"ptrapccl",    two(0xf07b, 0x000f),    two(0xffff, 0xffff),    "#l"},
  1671. {"ptrapcc",    two(0xf07c, 0x000f),    two(0xffff, 0xffff),    ""},
  1672.  
  1673. {"ptrapcsw",    two(0xf07a, 0x000e),    two(0xffff, 0xffff),    "#w"},
  1674. {"ptrapcsl",    two(0xf07b, 0x000e),    two(0xffff, 0xffff),    "#l"},
  1675. {"ptrapcs",    two(0xf07c, 0x000e),    two(0xffff, 0xffff),    ""},
  1676.  
  1677. {"ptrapgcw",    two(0xf07a, 0x000d),    two(0xffff, 0xffff),    "#w"},
  1678. {"ptrapgcl",    two(0xf07b, 0x000d),    two(0xffff, 0xffff),    "#l"},
  1679. {"ptrapgc",    two(0xf07c, 0x000d),    two(0xffff, 0xffff),    ""},
  1680.  
  1681. {"ptrapgsw",    two(0xf07a, 0x000c),    two(0xffff, 0xffff),    "#w"},
  1682. {"ptrapgsl",    two(0xf07b, 0x000c),    two(0xffff, 0xffff),    "#l"},
  1683. {"ptrapgs",    two(0xf07c, 0x000c),    two(0xffff, 0xffff),    ""},
  1684.  
  1685. {"ptrapicw",    two(0xf07a, 0x000b),    two(0xffff, 0xffff),    "#w"},
  1686. {"ptrapicl",    two(0xf07b, 0x000b),    two(0xffff, 0xffff),    "#l"},
  1687. {"ptrapic",    two(0xf07c, 0x000b),    two(0xffff, 0xffff),    ""},
  1688.  
  1689. {"ptrapisw",    two(0xf07a, 0x000a),    two(0xffff, 0xffff),    "#w"},
  1690. {"ptrapisl",    two(0xf07b, 0x000a),    two(0xffff, 0xffff),    "#l"},
  1691. {"ptrapis",    two(0xf07c, 0x000a),    two(0xffff, 0xffff),    ""},
  1692.  
  1693. {"ptraplcw",    two(0xf07a, 0x0003),    two(0xffff, 0xffff),    "#w"},
  1694. {"ptraplcl",    two(0xf07b, 0x0003),    two(0xffff, 0xffff),    "#l"},
  1695. {"ptraplc",    two(0xf07c, 0x0003),    two(0xffff, 0xffff),    ""},
  1696.  
  1697. {"ptraplsw",    two(0xf07a, 0x0002),    two(0xffff, 0xffff),    "#w"},
  1698. {"ptraplsl",    two(0xf07b, 0x0002),    two(0xffff, 0xffff),    "#l"},
  1699. {"ptrapls",    two(0xf07c, 0x0002),    two(0xffff, 0xffff),    ""},
  1700.  
  1701. {"ptrapscw",    two(0xf07a, 0x0005),    two(0xffff, 0xffff),    "#w"},
  1702. {"ptrapscl",    two(0xf07b, 0x0005),    two(0xffff, 0xffff),    "#l"},
  1703. {"ptrapsc",    two(0xf07c, 0x0005),    two(0xffff, 0xffff),    ""},
  1704.  
  1705. {"ptrapssw",    two(0xf07a, 0x0004),    two(0xffff, 0xffff),    "#w"},
  1706. {"ptrapssl",    two(0xf07b, 0x0004),    two(0xffff, 0xffff),    "#l"},
  1707. {"ptrapss",    two(0xf07c, 0x0004),    two(0xffff, 0xffff),    ""},
  1708.  
  1709. {"ptrapwcw",    two(0xf07a, 0x0009),    two(0xffff, 0xffff),    "#w"},
  1710. {"ptrapwcl",    two(0xf07b, 0x0009),    two(0xffff, 0xffff),    "#l"},
  1711. {"ptrapwc",    two(0xf07c, 0x0009),    two(0xffff, 0xffff),    ""},
  1712.  
  1713. {"ptrapwsw",    two(0xf07a, 0x0008),    two(0xffff, 0xffff),    "#w"},
  1714. {"ptrapwsl",    two(0xf07b, 0x0008),    two(0xffff, 0xffff),    "#l"},
  1715. {"ptrapws",    two(0xf07c, 0x0008),    two(0xffff, 0xffff),    ""},
  1716.  
  1717. {"pvalid",    two(0xf000, 0x2800),    two(0xffc0, 0xffff),    "Vs&s"},
  1718. {"pvalid",    two(0xf000, 0x2c00),    two(0xffc0, 0xfff8),    "A3&s" },
  1719.  
  1720. #endif /* m68851 */
  1721.  
  1722. };
  1723.  
  1724. int numopcodes=sizeof(m68k_opcodes)/sizeof(m68k_opcodes[0]);
  1725.  
  1726. struct m68k_opcode *endop = m68k_opcodes+sizeof(m68k_opcodes)/sizeof(m68k_opcodes[0]);
  1727.